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?
If you want to delete database programatically you can use deleteDatabase from Context class:
deleteDatabase
Context
deleteDatabase(String name) Delete an existing private SQLiteDatabase associated with this Context's application package.