Sqlite: How do I reset all database tables?
I want a debug function to do this, but I'm unaware of whether one already exists. Going through and using 'drop table' for each of my tables will be a pain. Help appreciated. Since the database is just one file, you can indeed just erase it. If you want something more automatic, you can use the following to do it all programmatically: Recover your schema: SELECT group_concat(sql,';') FROM sqlite_master; Disconnect from the database Delete the database file Create your schema again with what was returned from the above query If you used any particular options for your original database (page