Nikki Tan <[email protected]> wrote: > I'm having problem inserting one record into a table that has Foreign Key > constraint, whereas I can succeed with the same SQL statement in command > line to the same table.
My guess is, you are inserting empty strings in one case, and NULLs in the other. '' is not the same as NULL. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

