I have an ODBC connection set up on my personal machine which connects to a
Novell Directory eDirectory. If I query the database using an invalid column
name

select thisIsAnInvalidColumnName from userNDS

cold fusion returns an error message telling me that the column name is
invalid, which it should. But when I query Novell using a proper query

select cn from userNDS

the driver returns an error saying that the "Driver not capable"

Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Novell][ODBC Driver For
eDirectory] Driver not capable

The error occurred in C:\Inetpub\wwwroot\AllUsers\testNovell.cfm: line 11

9 : <body>
10 : <!--- Queries the Intranet database--->
11 : <cfquery datasource="Novell" name="qryNovell">
12 :
13 : Select cn from UserNDS



--------------------------------------------------------------------------------

SQL Select cn from UserNDS
DATASOURCE Novell
VENDORERRORCODE 1010
SQLSTATE HYC00

I can pull information using Crystal Reports perfectly fine, so something is
happen when I go to ColdFusion. Any ideas?

Thank you,

Devin