db = this.getWritableDatabase();を使用しました。コンストラクタ自体では、私は特定のオープン関数またはクローズ関数を使用することはできません。したほうがいい?クエリの更新SQLiteでNULLポインタの例外が発生する
public void changeCabLocation(String to_loc, String cab_id2) {
// TODO Auto-generated method stub
ContentValues val=new ContentValues();
val.put(cab_location, to_loc);
db.update(TB_cabs, val, cab_id+"="+cab_id2, null);
}
public void changeDriverLocation(String to_loc, String driver_id2) {
// TODO Auto-generated method stub
ContentValues val=new ContentValues();
val.put(driver_location, to_loc);
db.update(TB_drivers, val, driver_id+"="+driver_id2, null);
}
、logcatを共有し、あなたのエラーが発生した特定の行を言及し、[MCVE]してください。 –