Home | History | Annotate | Download | only in sqlite

Lines Matching refs:query

31  * A Cursor implementation that exposes results from a query on a
47 /** The query object for the cursor */
50 /** The compiled query this cursor came from */
69 * Execute a query and provide access to its result set through a Cursor
70 * interface. For a query such as: {@code SELECT name, birth, phone FROM
77 * @param editTable the name of the table used for this query
78 * @param query the rest of the query terms
84 String editTable, SQLiteQuery query) {
85 this(driver, editTable, query);
89 * Execute a query and provide access to its result set through a Cursor
90 * interface. For a query such as: {@code SELECT name, birth, phone FROM
95 * @param editTable the name of the table used for this query
96 * @param query the {@link SQLiteQuery} object associated with this cursor object.
98 public SQLiteCursor(SQLiteCursorDriver driver, String editTable, SQLiteQuery query) {
99 if (query == null) {
100 throw new IllegalArgumentException("query object cannot be null");
110 mQuery = query;
112 mColumns = query.getColumnNames();
160 // Close the cursor window if the query failed and therefore will
289 ", query = " + sql.substring(0, (len > 1000) ? 1000 : len),