Is it possible to serialize only the records from a query to json (not the full buffer)?
WRITE-JSON seems to alway export all records from the TEMP-TABLE.
This is not possible out of the box.
You need to implement the serialization on your own. If you are on OE Version 11.6 I want to point you to the JsonObject type (documentation.progress.com/.../index.html. With this you can easily build your own valid JSON string.
This is not possible out of the box.
You need to implement the serialization on your own. If you are on OE Version 11.6 I want to point you to the JsonObject type (documentation.progress.com/.../index.html. With this you can easily build your own valid JSON string.
My main concern with this was performance but i tried it just now and it is surprisingly fast.
Thank you