Lines Matching refs:where

268         private String[] where = new String[SIZE];
287 where[i] = "b >= " + lower + " AND b < " + upper;
295 .query("t1", COLUMNS, where[i], null, null, null, null);
308 private String[] where = new String[SIZE];
325 where[i] = "c LIKE '" + numberName(i) + "'";
333 .query("t1", COLUMNS, where[i], null, null, null, null);
346 private String[] where = new String[SIZE];
366 where[i] = "b >= " + lower + " AND b < " + upper;
374 .query("t1", COLUMNS, where[i], null, null, null, null);
505 private String[] where = new String[SIZE];
534 where[i] =
544 .query("t1", COLUMNS, where[i], null, null, null, null);
557 private String[] where = new String[SIZE];
575 where[i] = "c LIKE '" + numberName(i) + "'";
583 .query("t1", COLUMNS, where[i], null, null, null, null);
596 private String[] where = new String[SIZE];
630 private String[] where = new String[SIZE];
729 private String[] where = new String[SIZE];
748 where[i] = "c LIKE '" + numberName(r).substring(0, 1) + "*'";
758 .query("t1", COLUMNS, where[i], null, null, null, null);
829 * 1000 DELETE's without an index with where clause
834 private String[] where = new String[SIZE];
853 where[i] = "b >= " + lower + " AND b < " + upper;
860 mDatabase.delete("t1", where[i], null);
866 * 1000 DELETE's with an index with where clause
871 private String[] where = new String[SIZE];
891 where[i] = "b >= " + lower + " AND b < " + upper;
898 mDatabase.delete("t1", where[i], null);
904 * 1000 update's with an index with where clause
909 private String[] where = new String[SIZE];
931 where[i] = "b >= " + lower + " AND b < " + upper;
942 mDatabase.update("t1", mValues[i], where[i], null);
948 * 1000 update's without an index with where clause
953 private String[] where = new String[SIZE];
974 where[i] = "b >= " + lower + " AND b < " + upper;
984 mDatabase.update("t1", mValues[i], where[i], null);
1127 private String[] where = new String[SIZE];
1145 where[i] = "a LIKE '" + numberName(r).substring(0, 1) + "*'";
1153 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1165 private String[] where = new String[SIZE];
1184 where[i] = "a LIKE '" + numberName(r).substring(0, 1) + "*'";
1192 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1204 private String[] where = new String[SIZE];
1219 where[i] = "a >= " + lower + " AND a < " + upper;
1226 mDatabase.query("t4", COLUMNS, where[i], null, null, null, null);
1238 private String[] where = new String[SIZE];
1255 where[i] = "a >= " + lower + " AND a < " + upper;
1263 mDatabase.query("t4", COLUMNS, where[i], null, null, null, null);
1276 private String[] where = new String[SIZE];
1293 where[i] = "a LIKE '*e*'";
1301 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);
1313 private String[] where = new String[SIZE];
1331 where[i] = "a LIKE '*e*'";
1340 mDatabase.query("t3", COLUMNS, where[i], null, null, null, null);