How can I set the start value for an AUTOINCREMENT field in SQLite?
|
Explicitly insert the value-1 into the table, then delete the row. |
|||
|
|
|
From the SQLite web site:
I tried this, and it works:
Where n+1 is the next ROWID you want and table is the table name. Could this be dangerous to the integrity of my database? |
|||
|
|
One way to do it is to insert the first row specifying explicitly the row id you want to start with. SQLite will then insert row ids that are higher than the previous highest. |
|||
|
|
|
In solution with SQLITE_SEQUENCE table, the entry into this table seems to be added after the first insert into the table with the autoincrement column is added. In some cases this might cause troubles (i.e autoincrement still starts from 1, not from wanted value). |
|||
|
|