插入 android.database.sqlite.SQLiteConstraintException 时出错:NOT NULL 约束失败:result.high(代码 1299)
Error inserting android.database.sqlite.SQLiteConstraintException: NOT NULL constraint failed: result.high (code 1299)
每次我尝试在资产文件夹中插入从 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.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)
ExamDB 助手
@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;
}
点击按钮activity
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
上收到这些错误
下一行:-
android.database.sqlite.SQLiteConstraintException:NOT NULL 约束失败:result.high(代码 1299)
表示NOT NULL冲突在名为result的table中名为high的列上。
你插入,插入列 yans、question 和 exp,没有您需要为 high 列提供值的冲突。或者交替改变 table.
的结构
也许根本原因是您更改了结构,通过从 onCreate
方法调用的 SQL 中删除 high 列,而不是意识到 onCreate
在数据库的生命周期内只有 运行 一次,并且任何结构更改都需要强制 onCreate
成为 运行,或者改变 [=53] =](您不能使用 alter 直接删除列,您必须使用新结构创建一个不同名称的 table,将任何现有数据从原始数据复制到新的 table删除原始 table(或重命名),然后使用原始名称重命名新的 table。
如果任何现有数据可能会丢失,那么最简单的解决方法是执行以下操作之一:-
- 删除应用程序的数据(删除数据库)。
- 卸载应用程序(删除数据库)。
- 增加版本号(删除 table 并调用
onCreate
方法)
完成上述其中一项后,重新运行 应用程序。
每次我尝试在资产文件夹中插入从 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.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)
ExamDB 助手
@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;
}
点击按钮activity
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
上收到这些错误下一行:- android.database.sqlite.SQLiteConstraintException:NOT NULL 约束失败:result.high(代码 1299)
表示NOT NULL冲突在名为result的table中名为high的列上。
你插入,插入列 yans、question 和 exp,没有您需要为 high 列提供值的冲突。或者交替改变 table.
的结构也许根本原因是您更改了结构,通过从 onCreate
方法调用的 SQL 中删除 high 列,而不是意识到 onCreate
在数据库的生命周期内只有 运行 一次,并且任何结构更改都需要强制 onCreate
成为 运行,或者改变 [=53] =](您不能使用 alter 直接删除列,您必须使用新结构创建一个不同名称的 table,将任何现有数据从原始数据复制到新的 table删除原始 table(或重命名),然后使用原始名称重命名新的 table。
如果任何现有数据可能会丢失,那么最简单的解决方法是执行以下操作之一:-
- 删除应用程序的数据(删除数据库)。
- 卸载应用程序(删除数据库)。
- 增加版本号(删除 table 并调用
onCreate
方法)
完成上述其中一项后,重新运行 应用程序。