Var oResults = query.execute().getResult();
You can then perform the following:
for( i=1; I LTE oResults.recordCount; i++ ) {
writeOutput(oResults.field[i]);
}
The query.execute() method returns an object that has the result set
buried inside of it, whereas using the getResult() method give you a
standard query result recordset.
Kevin
return oResults;
}
<cfloop query="rc.entries.getResult()">
</cfloop>
With no success...
This works here:
--
You received this message because you are subscribed to the Google
Groups "ColdBox Platform" group.
To post to this group, send email to col...@googlegroups.com To
unsubscribe from this group, send email to
coldbox-u...@googlegroups.com
For more options, visit this group at
http://groups-beta.google.com/group/coldbox
For News, visit http://blog.coldbox.org
For Documentation, visit http://wiki.coldbox.org