最后在FireFox附加组件中插入来自SQLite的id

时间:2011-02-03 18:19:58

标签: sqlite firefox-addon xpcom

我正在为firefox编写插件并使用SQLite通过XPCOM。

任何人都可以解释如何从autoincrement列获取最后一个插入的id吗?

2 个答案:

答案 0 :(得分:1)

您可以使用lastInsertRowId on the connection。但是,你should avoid using synchronous statement execution,这意味着你不能依赖那个属性。您必须运行另一个SQL查询才能获得该值。

答案 1 :(得分:0)

你可以使用

SELECT last_insert_rowid();