Pergunta

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?

Foi útil?

Solução

SQLiteDatabase db = helper.getWritableDatabase(); 
//helper is object extends SQLiteOpenHelper
db.delete(DatabaseHelper.TAB_USERS, null, null);
db.delete(DatabaseHelper.TAB_USERS_GROUP, null, null);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top