delete(String table, String whereClause, String[] whereArgs)
update(String table, ContentValues values, String whereClause, String[] whereArgs)
这是String[] whereArgs
是什么?它与“?”相关联(所谓的外卡)?
答案 0 :(得分:38)
是的,String[] whereArgs
包含要附加到whereClause
的参数。
例如,您想要删除查询:
从InfoTable中删除name =“ABC”和id =“23”
然后查询应该是:
delete("InfoTable", "name = ? AND id = ?" , new String[] {"ABC", "23"});