Question
Unsupported Cast Excpetion:
Using the following query statement:
<cfquery name="AllEvents" dbtype="query">
SELECT *
FROM AllEvents
ORDER BY Start_Time
<cfif EventFlag Eq 1>
, EventDesc
</cfif>
</cfquery>
We get the following error:
Query Of Queries runtime error. Query Of Queries runtime error.
Unsupported Cast Excpetion: Casting to type "NULL" is unsupported.
It appears to be related to our use of tostring. This worked fine with CF6.1MX, but when we changed to CF7, this error occurred.
<cfquery name="AllEvents" dbtype="query">
SELECT *
FROM AllEvents
ORDER BY Start_Time
<cfif EventFlag Eq 1>
, EventDesc
</cfif>
</cfquery>
We get the following error:
Query Of Queries runtime error. Query Of Queries runtime error.
Unsupported Cast Excpetion: Casting to type "NULL" is unsupported.
It appears to be related to our use of tostring. This worked fine with CF6.1MX, but when we changed to CF7, this error occurred.