Hmm..
I'm so used to doing this via php's sqlite interface:
SELECT * FROM blah WHERE id = "12345";
"form" in double quotes is an alternative way to refer to FORM column -
it is _not_ a string literal. So your query condition is WHERE
FORM=FORM, which is of course always true (except maybe when FORM is NULL).
A string literal should be enclosed in single quotes, as in 'form'.
Igor Tandetnik
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------