public interface SqliteDataRetriever
SQLiteDatabase| Modifier and Type | Method and Description |
|---|---|
void |
freeResources()
Deprecated.
|
java.lang.String |
getDatabaseName() |
android.database.Cursor |
rawQuery(java.lang.String query,
java.lang.String[] selectionArgs)
Runs the provided SQL and returns a
Cursor over the result set. |
android.database.Cursor rawQuery(java.lang.String query,
java.lang.String[] selectionArgs)
Cursor over the result set.
Called Multiple Timesquery - the SQL query. The SQL string must not be ; terminatedselectionArgs - You may include ?s in where clause in the query,
which will be replaced by the values from selectionArgs. The
values will be bound as Strings.Cursor object, which is positioned before the first entry. Note that
Cursors are not synchronized, see the documentation for more details.java.lang.String getDatabaseName()
@Deprecated void freeResources()