Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了自己的 SQLite3 库,它运行良好。
现在我在找出条目的自动增量值时遇到了一些麻烦。
我的条目有一个名为 id 的 auto_increment 值,直到我上传条目才设置。
上传 SQLite3 分配给我上传条目的 auto_increment 值后,如何直接获取?
你的,
乔恩
在 C API 中,最后插入记录的 ID 由sqlite3_last_insert_rowid() 函数返回。你的图书馆应该这样称呼。