Last inserted id from SQLite in FireFox add-on

227 views Asked by At

im writing addon for firefox and use SQLite trough XPCOM.

Can anyone explain how to get last inserted id from autoincrement column?

2

There are 2 answers

0
sdwilsh On

You can use the lastInsertRowId on the connection. However, you should avoid using synchronous statement execution, which means you cannot rely on that property. You'll have to run another SQL query to get that value.

0
Hiyasat On

you can use

SELECT last_insert_rowid();