Hello,
I am using resultset in AX.
if there are 100 columns, and I want to getString from the resultset from each of the column.
I do loop like this:
for (i = 1; i <= 100; i++) { s = myResultset.getString(); }
The above is time consuming. If I have 1000 rows and 100 columns, for 100 rows it is about 15 seconds (because of the function getString, which is very long time consuming).
Is there any better performance to get the columns value (in a balk or something ...)?
Thanks :)