How to set debug request name using queryExecute

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:

enter image description here

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

enter image description here

+4
source share
1 answer

I am posting this as an answer, so I can get some points .;) This is a mistake, clean and simple. I checked the Debug template and the data is being written with the wrong name. I filed an error report here: https://bugbase.adobe.com/index.cfm?event=bug&id=3836702

+7

All Articles