Skip to main content
This topic has been closed for replies.

1 reply

BKBK
Community Expert
Community Expert
September 10, 2015

You call it "this feature", but it's about a number of enhancements. Could you show us the code that you used.

Participant
September 10, 2015

 

<cfscript>

 

    clientInfo = structNew();

 

    clientInfo.AccountingInfo = "MyAccount_cfquery";

 

    clientInfo.Action = "cfstoredproc_cfquery";

 

    clientInfo.ApplicationName = "testApp_cfquery";

 

    clientInfo.ClientHostName = "Testserver_cfquery";

 

    clientInfo.ClientID = "testID_cfquery";

 

    clientInfo.ClientUser = "cfadmin_cfquery";

 

    clientInfo.ProgramID = 1234;

 

    clientInfo.Module = "test_query";

 

</cfscript>

 

<cfquery name="qName"  datasource="#regdatasource#" clientInfo="#clientInfo#">

 

Select * from employees

 

</cfquery>

 

Inspiring
September 10, 2015

What happens when you run it? What are you expecting to happen??