Let's say I make 5 entries in a sqlite db.
_id | Name
1 Tom
2 Oskar
3 Matt
4 Mike
5 Ed
If I delete number 4 and 5, I only have 1-3. I then do a max _id query then I get number 3. But, of course I want the next auto incremented _id. What would be the method to do to get the number "6" in this example?