有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java数据库自动更新失败

我无法理解为什么这个方法在没有抛出错误或异常的情况下不更新数据库

public void updatelocation(String newloc, String cservice, String cno) {
    try {
        SQLiteDatabase sdb = getWritableDatabase();
        String where = Table_info.Courier_service+ " LIKE ? AND "+Table_info.Courier_no +" LIKE ?";
        String[] whereArgs = new String[]{"BLUE DART","BD01"};
        System.out.println(whereArgs);
        ContentValues cv = new ContentValues();
        cv.put(Table_info.Location, newloc);
        sdb.update(Table_info.Table_Name, cv, where, whereArgs);
        Log.v("server Data", "Updation Successful");
        sdb.close();
    } catch(Exception e) {
        System.out.println("update method error:"+e.getMessage());
    }
}

共 (1) 个答案

  1. # 1 楼答案

    你的方法似乎很好。您是否可以打印受影响的行数,并查看其显示的行数

    sdb.update(Table_info.Table_Name, cv, where, whereArgs);
    

    此方法将返回受影响的行数。如果它显示“0”,则您的where条件有问题