FileDocCategorySizeDatePackage
SQLiteCursorDriver.javaAPI DocAndroid 5.1 API1804Thu Mar 12 22:22:10 GMT 2015android.database.sqlite

SQLiteCursorDriver

public 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.

Fields Summary
Constructors Summary
Methods Summary
public voidcursorClosed()
Called by a SQLiteCursor when it it closed to destroy this object as well.

public voidcursorDeactivated()
Called by a SQLiteCursor when it is released.

public voidcursorRequeried(android.database.Cursor cursor)
Called by a SQLiteCursor when it is requeried.

public android.database.Cursorquery(android.database.sqlite.SQLiteDatabase.CursorFactory factory, java.lang.String[] bindArgs)
Executes the query returning a Cursor over the result set.

param
factory The CursorFactory to use when creating the Cursors, or null if standard SQLiteCursors should be returned.
return
a Cursor over the result set

public voidsetBindArguments(java.lang.String[] bindArgs)
Set new bind arguments. These will take effect in cursorRequeried().

param
bindArgs the new arguments