Search found 1 match

by pttmail
25.02.2009, 23:22
Forum: SQLite
Topic: Autoinc primary key not refreshed after post
Replies: 6
Views: 1893

workarround

For refresh on insert try this in your refreshSQL:

select * from my_table where id = :id or id is null order by id desc

(id is your INTEGER PRIMARY KEY AUTOINCREMENT field)