I'm using SQLite Manager for my project but sometimes all my tables disappear suddenly.
So what should I do for this?i'm confused because data in the table gone also.
Please help me..
I'm using SQLite Manager for my project but sometimes all my tables disappear suddenly.
So what should I do for this?i'm confused because data in the table gone also.
Please help me..
I found two links that might be of use.
Are you connecting to a database by name? If not by default the sqlite3 engine will create an in-memory database, and that will disappear once you disconnect.
http://forums.macrumors.com/threads/help-with-no-such-table-error-with-sqlite.1141918/
The second link is interesting because if you do reference a db file, but say your path is incorrect, the engine will create an empty file instead of returning an error.
If the database is opened (and/or created) successfully, then SQLITE_OK is returned.
I hope this helps!