我试图使用sqlite的last_insert_rowID()函数,但没有找到运气.
任何人都可以告诉哪个是最后一个插入行ID的最佳方法.
任何想法都表示赞赏.
提前致谢.解决方法 你可以在这样的表上得到最后一个插入的ID –
tx.executesql("INSERT INTO profile('name','label','List_order','category') values(?,?,?)",[currentProfile.name,currentProfile.label,currentProfile.List_order,currentProfile.category],function(tx,results){ var lastInsertID = results.insertID; // this is the ID of the insert just performed },failCB)
Websql中的results.insertID类似于MysqL中的MysqL_insert_ID() –
MysqL_query("INSERT INTO mytable (product) values ('kossu')");printf("Last inserted record has ID %d\n",MysqL_insert_ID());总结
以上是内存溢出为你收集整理的cordova – 如何从phonegap android中的sqlite获取最后插入的行id全部内容,希望文章能够帮你解决cordova – 如何从phonegap android中的sqlite获取最后插入的行id所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)