I\'m using SQLite in android. I want to drop the database.
For example: mysql- drop database dbname
mysql- drop database dbname
How do I implement this code in SQLite?
From http://www.sqlite.org/cvstrac/wiki?p=UnsupportedSql
To create a new database, just do sqlite_open(). To drop a database, delete the file.