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?
try this :
context.deleteDatabase(DATABASE_NAME);
How to delete SQLite database from Android programmatically