Frage

I want to clear my SQLite database by deleting the associated db file and then recreating it.

However, I can't use context.deleteDatabase() for I'm working with the min API 10.

Any alternatives?

War es hilfreich?

Lösung

SQLiteDatabase db = helper.getWritableDatabase(); 
//helper is object extends SQLiteOpenHelper
db.delete(DatabaseHelper.TAB_USERS, null, null);
db.delete(DatabaseHelper.TAB_USERS_GROUP, null, null);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top