So, I created a test database to start learning SQLite. I just ran "sqlite3
test.db" and then entered "CREATE TABLE hello (world CHAR(50)); INSERT INTO
hello VALUES ('a','b','c'); SELECT * FROM hello;"
That worked perfectly in the program. I ran the select again after closing
to make sure it wrote to the file, and then I copied the database file to my
Visual C++ debug folder. I ran it in a little test program that would open
the database (taken right out of the 5 minute quickstart guide), and it
opened the file, but it keeps saying "table hello does not exist." Why is it
working with sqlite3.exe but not with the libraries?

-Andrew
-- 
View this message in context: 
http://old.nabble.com/Stupid-noob-question---can%27t-find-table-tp27578353p27578353.html
Sent from the SQLite mailing list archive at Nabble.com.

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to