android.database.sqlite.SQLiteCursorDriver
android.database.sqlite.SQLiteCursorDriver |
|
A driver for SQLiteCursors that is used to create them and gets notified
by the cursors it creates on significant events in their lifetimes.
Summary
Details
Public Methods
public
void
cursorClosed()
Called by a SQLiteCursor when it it closed to destroy this object as well.
public
void
cursorDeactivated()
Called by a SQLiteCursor when it is released.
public
void
cursorRequeried(Cursor cursor)
Called by a SQLiteCursor when it is requeryed.
Executes the query returning a Cursor over the result set.
Parameters
factory
| The CursorFactory to use when creating the Cursors, or
null if standard SQLiteCursors should be returned. |
Returns
- a Cursor over the result set
public
void
setBindArguments(String[] bindArgs)
Set new bind arguments. These will take effect in cursorRequeried().
Parameters
bindArgs
| the new arguments
|