How to cycle through JSON with multiple records in Delphi
When receiving JSON such as the example below, how do I cycle through to extract each field value of each “record”, so I can insert them into a database? { “Accounts”: [{ “AccountID”: “ebd06280-af70-4bed-97c6-7451a454ad85”, “Code”: “091”, “Name”: “Business Savings Account”, “Type”: “BANK”, “TaxType”: “NONE”, “EnablePaymentsToAccount”: false, “BankAccountNumber”: “0209087654321050”, “BankAccountType”: “BANK”, “CurrencyCode”: “NZD” },{ “AccountID”: “7d05a53d-613d-4eb2-a2fc-dcb6adb80b80”, … Read more