Hello,
I am trying to use a QOQ (Query of Queries) with the LIKE operataor. Here is my SQL:
I am getting the following error:
What can you recommend?
Thanks,
Michael42
I am trying to use a QOQ (Query of Queries) with the LIKE operataor. Here is my SQL:
Code:
<cfquery name="qry2" dbtype="query">SELECT * FROM qryInit WHERE location LIKE '%iam%' ORDER BY location</cfquery>
I am getting the following error:
Code:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
Null Pointers are another name for undefined values.
The error occurred in C:\CFusionMX\[URL unfurl="true"]wwwroot\dev\dbx\Application.cfm:[/URL] line 92
90 :
91 : <!--- <cfquery name="qry" dbtype="query">#preserveSingleQuotes(sSQL)#</cfquery> --->
92 : <cfquery name="qry" dbtype="query">SELECT * FROM qryInit WHERE location LIKE '%iam%' ORDER BY location</cfquery>
93 :
94 :
What can you recommend?
Thanks,
Michael42