我有一个只包含一个值的数据库。它有两列,分别是“id”和“status”。id = 1 且状态 = FALSE。当我写的条件满足时,我想将我的表更新为 TRUE。
System.out.println("!!!!!entered here!!!!!!!!!");
ContentValues cv = new ContentValues();
cv.put("1", "TRUE");
System.out.println("!!!!!entered here!!!!!!!!!");
db.update("main", cv, "id = 1", null);
System.out.println("??????not entered here??????");
它迫使我退出,当然也没有更新我的表格。
我正在尝试这个来检查一个条件,如果它得到满足,它就会使状态为真。如果状态为 FALSE,我的应用程序将进入 CheckScreen,如果为 TRUE,我的应用程序将不会进入该屏幕。
我也在听你对此案的解决方案。