Operation Not Supported
Posted: Fri 03 Nov 2006 12:50
Hi all,
I' trying to execute this query without success:
When I execute this query from code using dbexpress SQL Server drivers I get the following exception:
I think the problem is with the 'IS NULL' code. Does the driver support this kind of query?
The same query if executed directly into the SQL Server workd fine.
Thank you
I' trying to execute this query without success:
Code: Select all
SELECT ca.identifier, al.title
FROM cae_courses_activities ca, cae_activities_lang al
WHERE ca.id=al.activityid AND al.lang='xx' AND ca.parent='/'
AND (ca.filename='' OR ca.filename IS NULL)
AND (ca.type='' OR ca.type IS NULL) AND ca.courseid=46
ORDER BY ca.id
Code: Select all
EDatabaseError: DBX Error: Operation Not Supported
The same query if executed directly into the SQL Server workd fine.
Thank you