Hi -
According to this article, you should basically be able to do a "select" from SQLITE_SEQUENCE:
http://www.sqlite.org/autoinc.html
SUGGESTION:
1. Create a couple of temporary tables
2. Explicitly specify "AUTOINCREMENT" in your primary indexes for each
3. Check "SQLLITE_SEQUENCE", your new row's key, and its ROWID for the *first* entry in the table.
4. Add a few more rows, alternating between the temporary tables.
5. See what happens.
'Hope that helps .. PSM