String [] whereArgs在android中的数据库方法参数

时间:2010-12-30 05:23:09

标签: android

delete(String table, String whereClause, String[] whereArgs)

update(String table, ContentValues values, String whereClause, String[] whereArgs)

这是String[] whereArgs是什么?它与“?”相关联(所谓的外卡)?

1 个答案:

答案 0 :(得分:38)

是的,String[] whereArgs包含要附加到whereClause的参数。

例如,您想要删除查询:

  

从InfoTable中删除name =“ABC”和id =“23”

然后查询应该是:

delete("InfoTable", "name = ? AND id = ?" , new String[] {"ABC", "23"});