Lines Matching refs:selection

87      * by parenthesis and ANDed with the selection passed to {@link #query}. The final
90 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
106 * by parenthesis and ANDed with the selection passed to {@link #query}. The final
109 * WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)
151 * When set, the selection is verified against malicious arguments.
160 * additionally also parenthesis escaping selection are caught.
269 * @param selection A filter declaring which rows to return,
272 * @param selectionArgs You may include ?s in selection, which
274 * that they appear in the selection. The values will be bound
292 String selection, String[] selectionArgs, String groupBy,
294 return query(db, projectionIn, selection, selectionArgs, groupBy, having, sortOrder,
306 * @param selection A filter declaring which rows to return,
309 * @param selectionArgs You may include ?s in selection, which
311 * that they appear in the selection. The values will be bound
331 String selection, String[] selectionArgs, String groupBy,
333 return query(db, projectionIn, selection, selectionArgs,
345 * @param selection A filter declaring which rows to return,
348 * @param selectionArgs You may include ?s in selection, which
350 * that they appear in the selection. The values will be bound
373 String selection, String[] selectionArgs, String groupBy,
379 if (mStrict && selection != null && selection.length() > 0) {
380 // Validate the user-supplied selection to detect syntactic anomalies
381 // in the selection string that could indicate a SQL injection attempt.
382 // The idea is to ensure that the selection clause is a valid SQL expression
387 String sqlForValidation = buildQuery(projectionIn, "(" + selection + ")", groupBy,
393 projectionIn, selection, groupBy, having,
414 * @param selection A filter declaring which rows to return,
434 String[] projectionIn, String selection, String groupBy,
446 // Tack on the user's selection, if present.
447 if (selection != null && selection.length() > 0) {
453 where.append(selection);
464 * substitution is carried out. The selection arguments parameter does not get
470 String[] projectionIn, String selection, String[] selectionArgs,
472 return buildQuery(projectionIn, selection, groupBy, having, sortOrder, limit);
500 * @param selection A filter declaring which rows to return,
520 String selection,
540 projectionIn, selection, groupBy, having,
547 * substitution is carried out. The selection arguments parameter does not get
559 String selection,
565 computedColumnsOffset, typeDiscriminatorValue, selection,