How to update table sqlite_sequence in Ormlite ? I just need update seq. How can I get that table via ORMLite ?
EDIT
I can\'t find ORLite t
Inside your .db file there's an table called sqlite_sequence
sqlite_sequence
Each row has two columns name which is the name of the table seq a integer indicating the current last value at this table
name
seq
You can update it to 0
0
But beware if your table use this id as the unique identifier.