Android SQLite 返回 -1
我是新来的,我正在开发我的第一个 Android 课程应用程序。每次我使用 mDb.insert() 时,都会返回“-1”。
简而言之,我有:
private SQLiteDatabase mDb;
ContentValues intialValues; //I then .put() some stuff into intialValues
return mDb.insert("mytable", null, initialValues);
并且我得到-1。
I'm new here, and I'm working on my first android application for class. Every time I use mDb.insert(), I get "-1" returned.
In brief, I have:
private SQLiteDatabase mDb;
ContentValues intialValues; //I then .put() some stuff into intialValues
return mDb.insert("mytable", null, initialValues);
And I get -1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
insertOrThrow
获取更好的调试信息。我的通灵调试能力表明您没有在数据库打开帮助器上使用可写方法正确实例化 mDb。Use
insertOrThrow
to get better debugging information. My psychic debugging powers say that you did not properly instantiatemDb
using the writable method on the database open helper.