Hi!
The clients of my site get an error message with IE 5.0
and IE 5.5. This is due to the following query :
<cfquery datasource="..."name="match">
Select Propert
From PropertyMaster
Where RoommateCode IN (#PreserveSingleQuotes(Variables.MatchCode)#)
</cfquery>
The error message is :
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)
[Microsoft][ODBC SQL Server Driver][SQL Server]Line 3: Incorrect syntax near
')'.
Data Source = "..."
SQL = "Select * From PropertyMaster Where RoommateCode IN () "
But Variables.MatchCode = 'lionking','cabrera'
So apparently, this is a compatibilty problem, because everything works fine with my browser.
Do U know what I can do to avoid this problem?
Thanks
Fabien
The clients of my site get an error message with IE 5.0
and IE 5.5. This is due to the following query :
<cfquery datasource="..."name="match">
Select Propert
From PropertyMaster
Where RoommateCode IN (#PreserveSingleQuotes(Variables.MatchCode)#)
</cfquery>
The error message is :
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)
[Microsoft][ODBC SQL Server Driver][SQL Server]Line 3: Incorrect syntax near
')'.
Data Source = "..."
SQL = "Select * From PropertyMaster Where RoommateCode IN () "
But Variables.MatchCode = 'lionking','cabrera'
So apparently, this is a compatibilty problem, because everything works fine with my browser.
Do U know what I can do to avoid this problem?
Thanks
Fabien