R
Robin Brown
Guest
No, it is not possible for the JSON string above to be deserialized into a dataset. In the OpenEdge ABL, a dataset is serialized as a JSON object, containing a sequence of JSON arrays representing the member temp-tables. Each temp-table JSON array consist of a sequence of JSON objects containing field data for each row. {"myDataset:{ "myTT1":[ {row1 field values}, {row2 field values}, .. ], "myTT2":[ ... ] } }
Continue reading...
Continue reading...