Home | History | Annotate | Download | only in sqlite

Lines Matching refs:whereArgs

1595     public int delete(String table, String whereClause, String[] whereArgs) {
1606 if (whereArgs != null) {
1607 int numArgs = whereArgs.length;
1609 DatabaseUtils.bindObjectToProgram(statement, i + 1, whereArgs[i]);
1635 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) {
1636 return updateWithOnConflict(table, values, whereClause, whereArgs, CONFLICT_NONE);
1651 String whereClause, String[] whereArgs, int conflictAlgorithm) {
1698 if (whereArgs != null) {
1699 size = whereArgs.length;
1701 statement.bindString(bindArg, whereArgs[i]);