Home | History | Annotate | Download | only in db

Lines Matching refs:query

22  * A basic implementation of {@link SupportSQLiteQuery} which receives a query and its args and
31 * Creates an SQL query with the sql string and the bind arguments.
33 * @param query The query string, can include bind arguments (.e.g ?).
34 * @param bindArgs The bind argument value that will replace the placeholders in the query.
36 public SimpleSQLiteQuery(String query, @Nullable Object[] bindArgs) {
37 mQuery = query;
42 * Creates an SQL query without any bind arguments.
44 * @param query The SQL query to execute. Cannot include bind parameters.
46 public SimpleSQLiteQuery(String query) {
47 this(query, null);