<@U7ENG0HV2> just dump the query. Then look at the...
# lucee
g
@Simone just dump the query. Then look at the data. It should tell you why. If you still can't see it, in your approach dump the record i and call flush just after that. Or use a try/catch block and in the catch statement dump i
s
i dump the
i
and see the structure of the data, but as i said i am building it manually so i need every row to be a struct of array, maybe i missed any specific part of the code where i did not generated array of structs but a weird way of generating the structs
fixed it
z
how...?
s
Copy code
var aData = [];
                for(i in myquery) {
                    tmpStruct = {};
tmpStruct['ID'] = i.id;
arrayAppend(aData, tmpStruct);
                }

                st['QueryData'] = aData;