I have tried it on android and it seems that simply ignores the given value assigned to the id field and just assigns it an autoincremented value (default behaviour).
Is there anyway to do this? I wanna do something like insert into table(id,name) values (100,"my name"). And let sqlite insert a row with id=100 not id=1 when the table is empty.
Thanks in advance.