Mark Brown wrote:
> Hi-
>  
> We have a query that is failing with SQLite error code 10:
>  
> SELECT A, B, C, D, E, F, G
> FROM Table1
> WHERE F=?
> ORDER BY E
>  
> but succeeds when the ORDER BY clause is removed.
>  
> This database does not have any indicies on any of the tables.  Is this why
> it is failing?

Are you actually searching for records where F is the string "?"

If so, why don't you try WHERE F="?" instead of leaving it with the
? unquoted.

-- 
Scott Baker - Canby Telcom
RHCE - System Administrator - 503.266.8253

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to