Why can't I reset the row number count in the android DataBase?
mDb.delete("SQLITE_SEQUENCE", null, null);
Why can't I reset the row number count in the android DataBase?
mDb.delete("SQLITE_SEQUENCE", null, null);
Try this:
// db = SQLiteDatabase
db.rawQuery("delete from your_table", null);
db.rawQuery("delete from sqlite_sequence where name='your_table'", null);
For detail, please see this.