Home | History | Annotate | Download | only in sqlite

Lines Matching refs:clause

86      * Append a chunk to the WHERE clause of the query. All chunks appended are surrounded
88 * WHERE clause looks like:
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:
111 * @param inWhere the chunk of text to append to the WHERE clause. it will be escaped
184 * WHERE clause (excluding the WHERE itself). Passing null will
187 * GROUP BY clause (excluding the GROUP BY itself). Passing null
191 * clause (excluding the HAVING itself). Passing null will cause
194 * @param orderBy How to order the rows, formatted as an SQL ORDER BY clause
198 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
206 "HAVING clauses are only permitted when using a groupBy clause");
234 private static void appendClause(StringBuilder s, String name, String clause) {
235 if (!TextUtils.isEmpty(clause)) {
237 s.append(clause);
270 * formatted as an SQL WHERE clause (excluding the WHERE
277 * as an SQL GROUP BY clause (excluding the GROUP BY
281 * SQL HAVING clause (excluding the HAVING itself). Passing
285 * ORDER BY clause (excluding the ORDER BY itself). Passing null
307 * formatted as an SQL WHERE clause (excluding the WHERE
314 * as an SQL GROUP BY clause (excluding the GROUP BY
318 * SQL HAVING clause (excluding the HAVING itself). Passing
322 * ORDER BY clause (excluding the ORDER BY itself). Passing null
325 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
346 * formatted as an SQL WHERE clause (excluding the WHERE
353 * as an SQL GROUP BY clause (excluding the GROUP BY
357 * SQL HAVING clause (excluding the HAVING itself). Passing
361 * ORDER BY clause (excluding the ORDER BY itself). Passing null
364 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
382 // The idea is to ensure that the selection clause is a valid SQL expression
426 * formatted as an SQL WHERE clause (excluding the WHERE
430 * as an SQL GROUP BY clause (excluding the GROUP BY itself).
434 * SQL HAVING clause (excluding the HAVING itself). Passing
438 * ORDER BY clause (excluding the ORDER BY itself). Passing null
441 * formatted as LIMIT clause. Passing null denotes no LIMIT clause.
512 * formatted as an SQL WHERE clause (excluding the WHERE
516 * as an SQL GROUP BY clause (excluding the GROUP BY itself).
520 * SQL HAVING clause (excluding the HAVING itself). Passing
588 * ORDER BY clause (excluding the ORDER BY itself). Passing
590 * @param limit The limit clause, which applies to the entire union result set