gpt4 book ai didi

sqlite - 如何在SQLite中获取最后插入记录的自增值?

转载 作者:行者123 更新时间:2023-12-03 04:55:33 26 4
gpt4 key购买 nike

使用 sqlite3,我在表 Foo 中插入了一个新行。

插入 Foo 值 (colX=?, colY=? colZ=?)

然后我绑定(bind)并执行查询。该表包含一个自动递增列作为主键。添加新行后,如何在不执行查询的情况下获取此 ID?

最佳答案

使用sqlite3_last_insert_rowid:

sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);

这将获取最后插入的 id,就像您所要求的那样。

http://www.sqlite.org/c3ref/last_insert_rowid.html

关于sqlite - 如何在SQLite中获取最后插入记录的自增值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5938713/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com