Home | History | Annotate | Download | only in framework

Lines Matching refs:query

149     public Cursor query(String query) {
150 return query(new SimpleSQLiteQuery(query));
154 public Cursor query(String query, Object[] bindArgs) {
155 return query(new SimpleSQLiteQuery(query, bindArgs));
160 public Cursor query(final SupportSQLiteQuery supportQuery) {
164 String editTable, SQLiteQuery query) {
165 supportQuery.bindTo(new FrameworkSQLiteProgram(query));
166 return new SQLiteCursor(masterQuery, editTable, query);
173 public Cursor query(final SupportSQLiteQuery supportQuery,
178 String editTable, SQLiteQuery query) {
179 supportQuery.bindTo(new FrameworkSQLiteProgram(query));
180 return new SQLiteCursor(masterQuery, editTable, query);
194 String query = "DELETE FROM " + table
196 SupportSQLiteStatement statement = compileStatement(query);