Copy link to clipboard
Copied
I have a query which has run well on ColdFusion 10.
However we've upgraded to CF2016 and yet when I run a query of a query I get no results.
<cfquery datasource="travcomus" name="firstquery">
SELECT * FROM tablename
</cfquery>
Followed by
<cfquery dbtype="Query" name="secondquery" >
select * from firstquery
</cfquery>
The second query does not return any results. There is nothing in the logs as well.
Copy link to clipboard
Copied
Does a CFDUMP of the first query produce records?
V/r,
^ _ ^
Copy link to clipboard
Copied
And if not, are the datasources configured identically between CF10 & CF2016?
-Carl V.