Home | History | Annotate | Download | only in db

Lines Matching refs:query

44      * @param sql The sql query.
259 * Runs the given query on the database. If you would like to have typed bind arguments,
260 * use {@link #query(SupportSQLiteQuery)}.
262 * @param query The SQL query that includes the query and can bind into a given compiled
266 * @see #query(SupportSQLiteQuery)
268 Cursor query(String query);
271 * Runs the given query on the database. If you would like to have bind arguments,
272 * use {@link #query(SupportSQLiteQuery)}.
274 * @param query The SQL query that includes the query and can bind into a given compiled
276 * @param bindArgs The query arguments to bind.
279 * @see #query(SupportSQLiteQuery)
281 Cursor query(String query, Object[] bindArgs);
284 * Runs the given query on the database.
288 * @param query The SQL query that includes the query and can bind into a given compiled
294 Cursor query(SupportSQLiteQuery query);
297 * Runs the given query on the database.
301 * @param query The SQL query that includes the query and can bind into a given compiled
305 * when the query is executed.
310 Cursor query(SupportSQLiteQuery query, CancellationSignal cancellationSignal);
375 * @see #query(SupportSQLiteQuery)
393 * @see #query(SupportSQLiteQuery)
489 * and using a different database connection for each query. The database
517 * If a query is part of a transaction, then it is executed on the same database handle the