I've a database (BASE2.db) with 4 tables inside, but, when i want to delete the database i've an error:
the code:
db.execSQL("DROP DATABASE IF EXISTS BASE2.db");
the logcat:
(1) near "DATABASE": syntax error
I've try this, but not correct:
db.execSQL("DROP TABLE IF EXISTS BASE2.db");
How to do this?