Home | History | Annotate | Download | only in sqlite

Lines Matching defs:where

86      * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
88 * WHERE clause looks like:
90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
92 * @param inWhere the chunk of text to append to the WHERE clause.
105 * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
107 * WHERE clause looks like:
109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
111 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
183 * @param where A filter declaring which rows to return, formatted as an SQL
184 * WHERE clause (excluding the WHERE itself). Passing null will
202 boolean distinct, String tables, String[] columns, String where,
225 appendClause(query, " WHERE ", where);
270 * formatted as an SQL WHERE clause (excluding the WHERE
307 * formatted as an SQL WHERE clause (excluding the WHERE
346 * formatted as an SQL WHERE clause (excluding the WHERE
415 * formatted as an SQL WHERE clause (excluding the WHERE
438 StringBuilder where = new StringBuilder();
442 where.append(mWhereClause.toString());
443 where.append(')');
449 where.append(" AND ");
452 where.append('(');
453 where.append(selection);
454 where.append(')');
458 mDistinct, mTables, projection, where.toString(),
501 * formatted as an SQL WHERE clause (excluding the WHERE