2

我在以下查询中得到“索引 1 处的绑定值为空”:

public String searchForWifiSSID(String one, String two){
c = db.query(Constants.TABLE_NAME, new String[]{Constants.PARAM1, Constants.PARAM2}, Constants.PARAM1 + " =? " +" AND " + Constants.PARAM2 + " =? ", new String[]{one,two}, null, null, null);
}

我的 selectionArgs 语法不正确吗?这样做是否不正确:

  public String searchForWifiSSID(String one, String two){
    c = db.query(Constants.TABLE_NAME, new String[]{Constants.PARAM1, Constants.PARAM2}, Constants.PARAM1 + " = " + one +" AND " + Constants.PARAM2 + " = " + two, null, null, null, null);
    }
4

1 回答 1

6

确保值“一”和“二”不为 NULL。我相信该错误意味着这些值之一为空。

于 2012-04-24T14:57:23.903 回答