问题描述
SQLite中是否有可用的内置函数来获取最后插入的行ID。
例如: - 在mysql中,我们有 LAST_INSERT_ID()
这种函数。对于sqllite,任何可用于执行相同过程的功能都可用。
请帮助我。
谢谢
SQLite
这可以使用:
PHP
这个函数的PHP版本/绑定是 返回最近插入到 Is there any built in function available in SQLite to fetch last inserted row id.For eg :- In mysql we have Please help me. Thanks This is available using the SQLite The PHP version/binding of this function is 这篇关于如何获取SQLite中的最后一个插入ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
lock $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ b
数据库dbhandle中的行的rowid,如果它创建为自动增量字段。
LAST_INSERT_ID()
this kind of a function. For sqllite any function available for doing the same process.SQLite
last_insert_rowid()
function:PHP
sqlite_last_insert_rowid()
: