Code: Select all
sqlite> INSERT INTO user (user.username) VALUES ('a_person');
SQL error: near ".": syntax errorModerator: General Moderators
Code: Select all
sqlite> INSERT INTO user (user.username) VALUES ('a_person');
SQL error: near ".": syntax errorYou had me wondering there, but no, creating a new table called "foo" with just an ID and a username column also fails.astions wrote:Does it have anything to do with user being a reserved keyword? I don't know if that still holds true in what your using. Never used it.