I have the following query:
<CFQUERY datasource="Metadata" name="ObjectList">
SELECT
objects.Class_Name,
objects.Object_Name,
objects.Object_Description
FROM
objects
WHERE
((objects.Class_Name) Like "*Entity*"
</cfquery>
It works in Access just fine, just as you see here, but when I let cold fusion send it through ODBC, I get the following error:
Too Few Parameters. Expected 1. It then gives a hint that my query contains a reference to a field that doesn't exist. This only happens when I have the WHERE clause included in it. Can anyone offer any advice? Thanks in advance.
V
<CFQUERY datasource="Metadata" name="ObjectList">
SELECT
objects.Class_Name,
objects.Object_Name,
objects.Object_Description
FROM
objects
WHERE
((objects.Class_Name) Like "*Entity*"
</cfquery>
It works in Access just fine, just as you see here, but when I let cold fusion send it through ODBC, I get the following error:
Too Few Parameters. Expected 1. It then gives a hint that my query contains a reference to a field that doesn't exist. This only happens when I have the WHERE clause included in it. Can anyone offer any advice? Thanks in advance.
V