column '_id' does not exist

column '_id' does not exist,第1张

概述错误提示如下: java.lang.IllegalArgumentException: column '_id' does not exist 因为SimpleCursorAdapter的方法只识别_id,所以,当你用到sqlite的SimpleCursorAdapter时,必须把数据表的主键命名为_id。另外在new SimpleCursorAdapter时里面的用到的Cursor , 如果是通

错误提示如下:

java.lang.IllegalArgumentException: column '_ID' does not exist

因为SimpleCursorAdapter的方法只识别_ID,所以,当你用到sqlite的SimpleCursorAdapter时,必须把数据表的主键命名为_ID。另外在newSimpleCursorAdapter时里面的用到的Cursor,如果是通过sqlitedatabase.query()方法获得,那么在query方法中参数String[] columns必须包含'_ID'主键!

总结

以上是内存溢出为你收集整理的column '_id' does not exist全部内容,希望文章能够帮你解决column '_id' does not exist所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1175129.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存