I would like to know if there is a way to set the debug request name using queryExecute ().
<cfscript>
qryTest = queryExecute('SELECT * FROM art', {}, {datasource="cfartgallery"});
writeDump(var="#qryTest#");
</cfscript>
Generates debug output as follows:

UPDATE for CF 11u5, debug output replaces "_queryname_var0" with "ExecuteQuery". It looks like this variable name is safe from rewriting.

source
share