插入 android.database.sqlite.SQLiteConstraintException 时出错:NOT NULL 约束失败:result.high(代码 1299)
Posted
技术标签:
【中文标题】插入 android.database.sqlite.SQLiteConstraintException 时出错:NOT NULL 约束失败:result.high(代码 1299)【英文标题】:Error inserting android.database.sqlite.SQLiteConstraintException: NOT NULL constraint failed: result.high (code 1299) 【发布时间】:2018-12-02 05:55:36 【问题描述】:每次我尝试在资产文件夹中插入从 sqlite 检索到的无线电问题、值和答案时,我都会收到此错误。
E/SQLiteDatabase: Error inserting yans=24 question=com.example.tochukwu.myapplication.Question@ecb77c9 exp=24 hours makes a day
android.database.sqlite.SQLiteConstraintException: NOT NULL constraint failed: result.high (code 1299)
at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)
at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:798)
at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:788)
at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:86)
at android.database.sqlite.SQLiteDatabase.insertWithOnConflict(SQLiteDatabase.java:1502)
at android.database.sqlite.SQLiteDatabase.insert(SQLiteDatabase.java:1373)
at com.example.tochukwu.myapplication.ExamDBHelper.insertDataUser(ExamDBHelper.java:133)
at com.example.tochukwu.myapplication.Ges100Activity$2.onClick(Ges100Activity.java:184)
at android.view.View.performClick(View.java:6199)
at android.view.View$PerformClick.run(View.java:23235)
at android.os.Handler.handleCallback(Handler.java:836)
at android.os.Handler.dispatchMessage(Handler.java:103)
at android.os.Looper.loop(Looper.java:203)
at android.app.ActivityThread.main(ActivityThread.java:6251)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1073)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:934)
考试数据库助手
@Override
public void onCreate(SQLiteDatabase db)
db.execSQL("CREATE TABLE " + TABLE_RESULT + "("
+ COL_0
+ " INTEGER PRIMARY KEY AUTOINCREMENT,"
+ COL_1
+ " TEXT NOT NULL,"
+ COL_2
+ " TEXT NOT NULL,"
+ COL_3
+ " TEXT NOT NULL)");
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
db.execSQL("DROP TABLE IF EXISTS "+TABLE_RESULT);
onCreate(db);
我正在使用约束值
public boolean insertDataUser(String question, String yans, String exp)
SQLiteDatabase db = this.getWritableDatabase();
ContentValues contentValues = new ContentValues();
contentValues.put(COL_1,question);
contentValues.put(COL_2,yans);
contentValues.put(COL_3,exp);
long result = db.insert(TABLE_RESULT,null ,contentValues);
if(result == -1)
return false;
else
return true;
按钮点击活动
boolean isInserted = db.insertDataUser(
currentQ.toString(),
currentQ.getANSWER().toString(),
currentQ.getEXP().toString() );
if(isInserted == true)
Toast.makeText(Ges100Activity.this,"Data Inserted",Toast.LENGTH_LONG).show();
else
Toast.makeText(Ges100Activity.this,"Data not Inserted",Toast.LENGTH_LONG).show();
除了插入值之外,其他一切都在工作。 每次我尝试使用 onClickButton 插入时,我都会在 logcat 上收到这些错误
【问题讨论】:
【参考方案1】:以下行:- android.database.sqlite.SQLiteConstraintException:NOT NULL 约束失败:result.high(代码 1299)
表示 NOT NULL 冲突发生在名为 result 的表中名为 high 的列上。
您插入、插入到列 yans、question 和 exp 中,以免发生冲突,您需要为 yans、question 和 exp 提供值强>高列。或者改变表格的结构。
也许根本原因是您更改了结构,通过从 onCreate
方法中调用的 SQL 中删除 high 列,没有意识到 onCreate
只运行一次数据库的生命周期,并且任何结构更改都需要强制运行 onCreate
或更改表(您不能使用 alter 直接删除列,您必须使用创建一个不同命名的表新结构,将任何现有数据从原始表复制到新表中删除原始表(或重命名),然后用原始名称重命名新表。
如果任何现有数据可能丢失,那么最简单的解决方法是执行以下操作之一:-
删除应用程序的数据(删除数据库)。 卸载应用程序(删除数据库)。 增加版本号(删除表并调用onCreate
方法)
执行上述任一操作后,重新运行应用程序。
【讨论】:
非常感谢......我很感激。它现在正在工作。以上是关于插入 android.database.sqlite.SQLiteConstraintException 时出错:NOT NULL 约束失败:result.high(代码 1299)的主要内容,如果未能解决你的问题,请参考以下文章