I delete the data from the table. After that, I start filling it up again. But the key (_id) does not write as the first value. And the account continues on. How to reset it?
//Добавление данных public long setInsert(String table, String nullColumnHack, ContentValues values) { return myDataBase.insert("NicknamePersony", nullColumnHack, values); } //Удаление данных public void delete(String table) { myDataBase.delete("NicknamePersony", null, null); }