gpt4 book ai didi

android - SQLite 约束异常 : column id is not unique (code 19) exception when updating row

转载 作者:行者123 更新时间:2023-11-29 14:31:08 26 4
gpt4 key购买 nike

我的数据库中有一个表,当添加新记录时,我正在使用 id 检查记录是否存在。如果存在,我想更新记录,如果它不添加新记录。但是我得到了异常(exception):

2006-2259/? E/SQLiteDatabase﹕ Error inserting id=080333 phone=080333 total_owed=15050.0 total_debts=0 name=Alison Jones android.database.sqlite.SQLiteConstraintException: column id is not unique (code 19)

这是检查记录是否存在的方法:

 public boolean checkIfExists(String tableName, String value) {

SQLiteDatabase database = this.getReadableDatabase();

String Query = "Select * from " + tableName + " where " + DEBTOR_ID + " = " + value;
Cursor cursor = database.rawQuery(Query, null);
if(cursor.getCount() <= 0){
cursor.close();
return false;
}
cursor.close();
return true;

}

它在这里被使用:

            debtor.setDebtorName(params[0]);
debtor.setPhoneNumber(params[1]);
debtor.setTotalAmountOwed(Double.parseDouble(params[6]));
debtor.setTotalDebts(0);

if (databaseHandler.checkIfExists(DebtDatabaseHandler.DEBTOR_TABLE_NAME, params[1])) {
Log.d("NewDebtFragment", "Record already exist");
databaseHandler.updateRecord(2, debtor.getTotalAmountOwed() + 50000);
} else {
debtorId = databaseHandler.addDebtor(debtor);
}

因为这是一个冲突问题,显然对现有记录的检查不起作用。我不明白这是为什么,因为代码看起来不错(?)

这是创建表格的方式:

String CREATE_DEBTOR_TABLE = "CREATE TABLE  " + DEBTOR_TABLE_NAME + " ( " +
DEBTOR_ID + " TEXT PRIMARY KEY, " +
DEBTOR_NAME + " TEXT, " +
PHONE_NUMBER + " TEXT, "+
TOTAL_DEBTS + " INTEGER, " +
TOTAL_OWED + " INTEGER) ";

updateRecord 方法:

 public void updateRecord(int newTotalDebt, double newTotalOwed) {

SQLiteDatabase db = this.getWritableDatabase();
ContentValues contentValues = new ContentValues();
contentValues.put(TOTAL_DEBTS, newTotalDebt);
contentValues.put(TOTAL_OWED, newTotalOwed);

db.update(DEBTOR_TABLE_NAME, contentValues, DEBTOR_ID, null);


}

最佳答案

用以下内容替换您的查询

 String Query = "Select * from " + tableName + " where " + DEBTOR_ID + " = '" + value+"'";

因为选择 value 是 string ,所以它必须用单引号括起来。

更新:
无需编写一大堆代码来检查记录是否退出(如果退出)然后更新该记录,您可以用一行简单的代码替换所有这些东西。

database.insertWithOnConflict(table,null,values,SQLiteDatabase.CONFLICT_REPLACE);

它将在内部处理异常,CONFLICT_REPLACE 它指定当发生 UNIQUE 约束违规时,在插入或更新当前行之前删除导致约束违规的预先存在的行。

关于android - SQLite 约束异常 : column id is not unique (code 19) exception when updating row,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30706305/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com