Sqlite Insert Issue – Error: No Such Column
I faced an issue with SQLite (version 3.7.13 if matters). I created a new table with two columns foo and bar, data type is undefined. When I try to insert numbers, it works fine. W
Solution 1:
You need to quote strings
insert into test values('a', 'b')
Post a Comment for "Sqlite Insert Issue – Error: No Such Column"