What is the command to drop all tables in SQLite?
Similarly I\'d like to drop all indexes.
Once you've dropped all the tables (and the indexes will disappear when the table goes) then there's nothing left in a SQLite database as far as I know, although the file doesn't seem to shrink (from a quick test I just did).
So deleting the file would seem to be fastest - it should just be recreated when your app tries to access the db file.