0

我正在运行一个可以编译的更新查询。但是当我测试结果时,似乎没有任何变化。在我看来一切都很好,但显然有些地方出了问题。谁能看到我错过了什么。SQLite 很新,如果它很简单,请道歉。谢谢!

public static Boolean updateHealth (int unitVal, int oldValue, int newValue) {
    String unit = Integer.toString(unitVal);
    String oldVal = Integer.toString(oldValue);
    String newVal = Integer.toString(newValue);

    System.err.printf("old val: %s, new val: %s\n", oldVal, newVal);
    SQLiteDatabase db = myDBOpenHelper.getWritableDatabase();
    String where = UNIT_COLUMN + " = " + unit + " AND " + HEALTH_COLUMN + " = " + oldVal;

    Cursor cursor = db.query(UNITS_TABLE, new String[] {UNIT_COLUMN}, where, null, null, null, null);

    if (cursor != null) {
        /* the record doesn't exist, cancel the operation */
        return false;
    }

    ContentValues updatedValues = new ContentValues();
    updatedValues.put(HEALTH_COLUMN, newVal);

    /* SQL query clauses */
    String whereArgs[] = null;

    db.update(UNITS_TABLE, updatedValues, where, whereArgs);

    return true;
}
4

1 回答 1

1

当没有检索到行时,游标不为空。所以你要换行if (cursor != null) {顺便if(!cursor.moveToNext()) {

说一句,更新前不需要查询数据库。您可以进行更新,查看有多少行受到影响,如果受影响的行数大于 0,则返回 true,否则返回 false。方法返回受影响的行数update

于 2012-12-08T00:21:19.680 回答