interface 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
| Public methods | |
|---|---|
| abstract Unit |
Called by a SQLiteCursor when it it closed to destroy this object as well. |
| abstract Unit |
Called by a SQLiteCursor when it is released. |
| abstract Unit |
Called by a SQLiteCursor when it is requeried. |
| abstract Cursor! |
Executes the query returning a Cursor over the result set. |
| abstract Unit |
Set new bind arguments. |
Public methods
cursorClosed
abstract fun cursorClosed(): Unit
Called by a SQLiteCursor when it it closed to destroy this object as well.
cursorDeactivated
abstract fun cursorDeactivated(): Unit
Called by a SQLiteCursor when it is released.