2013-08-28 62 views
-1
public void updateTable(String id, String name) 
{ 
    String strFilter = "realId=" + id; 
    ContentValues args = new ContentValues(); 
    args.put("name", name); 
    db.update("names", args, strFilter, null); 
} 

我上線下方一個空指針異常:錯誤而更新SQLite表

db.update("names", args, strFilter, null); 

回答

1

你有沒有打開數據庫?可能是你沒有打開,可能是錯誤。

+0

做到了這一點。 – tony9099