Skip to content
Advertisement

How to reset autoincrement value after deleting 1 row of column from it, on sqlite java android?

on MYSQLI this method is work on me back then, ALTER TABLE tablename AUTO_INCREMENT = 0, this will reset on last autoincrement position

but i don’t know how to do it on SQLITE, so the idea is, i want to delete 1 row column table, and at the same time i want to reset auto increment value to the last position, here is my code

JavaScript

and this is my DatabaseHelper class

JavaScript

Advertisement

Answer

SQLite stores the last ROW-ID in a table SQLITE_SEQUENCE, which is managed by the SQLite automatically. The values within this table remain saved even if you delete or empty other tables.

There are two approaches to reset the auto-increment counter.

  1. Delete your entire table and then recreate it. (maybe use a dummy temporary table to save the current data). Delete the information about your table from the SQLITE_SEQUENCE meta table.
JavaScript
  1. Update the sequence in the sqlite_sequence using update query
JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement