On 7 May 2012, at 10:25pm, peter korinis <kori...@earthlink.net> wrote:
> I searched the entire disk for the table name and no matches. SQLite keeps its tables in databases. One database is one file on disk. The files are not in any magic place: each time you create a database you have to specify a specific file (folder and filename) for SQLite to keep its data in. If you want to access data you saved earlier, you have to specify the same file (folder and filename) or SQLite will open a new file in this new place you've specified, find that there's no data there, and telling you you have no tables. So when you put the data into the tables in the first place, make sure you've specified a path and filename. If you find you're creating tables and haven't given SQLite a path and filename yet, you're doing the wrong thing ! And when you want to get your data back out again, specify the same folder and filename. Simon. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users