Cfquery not supported within cfclient in Coldfusion 2018
Hi, I have a problem with cfquery tag inside cfclient tag for Coldfusion 2018.
Cfquery is working outside cfclient tag...but inside cfclient is not working
this code is not working:
<cfclient>
<cfquery name="q1" datasource = "storebooksdmx">
select * from collection
</cfquery>
<cfoutput>#serializeJSON(q1)#</cfoutput>
</cfclient>
but this code is working ok:
<cfquery name="q1" datasource = "storebooksdmx">
select * from collection
</cfquery>
<cfoutput>#serializeJSON(q1)#</cfoutput>
Any help please?
Thanks!
