A
B
C
D
E
F
G
H
I
L
M
N
O
P
Q
R
S
T
U
V
W
Y
O
- onBeforeDelete(SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called before the database is deleted when the version returned by getVersion is lower than the minimum supported version passed (if atall) while creating this helper.
- onBegin() - function in net.zetetic.database.sqlcipher.SQLiteTransactionListener
- Called immediately after the transaction begins.
- onCancel() - function in net.zetetic.database.sqlcipher.SQLiteConnection
- onCancel() - function in android.os.SQLiteConnection
- onCommit() - function in net.zetetic.database.sqlcipher.SQLiteTransactionListener
- Called immediately before commiting the transaction.
- onConfigure(SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database connection is being configured, to enable features such aswrite-ahead logging or foreign key support.
- onCorruption(SQLiteDatabase,SQLiteException) - function in net.zetetic.database.DatabaseErrorHandler
- The method invoked when database corruption is detected.
- onCorruption(SQLiteDatabase,SQLiteException) - function in net.zetetic.database.DefaultDatabaseErrorHandler
- defines the default method to be invoked when database corruption is detected.
- onCreate(SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database is created for the first time.
- onDowngrade(SQLiteDatabase,int,int) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database needs to be downgraded.
- onMove(int,int) - function in net.zetetic.database.MatrixCursor
- This function is called every time the cursor is successfully scrolledto a new position, giving the subclass a chance to update any state itmay have.
- onMove(int,int) - function in net.zetetic.database.AbstractCursor
- This function is called every time the cursor is successfully scrolledto a new position, giving the subclass a chance to update any state itmay have.
- onMove(int,int) - function in net.zetetic.database.AbstractWindowedCursor
- This function is called every time the cursor is successfully scrolledto a new position, giving the subclass a chance to update any state itmay have.
- onMove(int,int) - function in net.zetetic.database.sqlcipher.SQLiteCursor
- This function is called every time the cursor is successfully scrolledto a new position, giving the subclass a chance to update any state itmay have.
- onOpen(SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database has been opened.
- onRollback() - function in net.zetetic.database.sqlcipher.SQLiteTransactionListener
- Called if the transaction is about to be rolled back.
- onUpgrade(SQLiteDatabase,int,int) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database needs to be upgraded.
- open(String) - function in net.zetetic.database.sqlcipher.CloseGuard
- If CloseGuard is enabled,
{@code open}
initializes the instancewith a warning that the caller should have explicitly called the{@code closer}
method instead of relying on finalization. - open(SQLiteDatabaseConfiguration) - function in net.zetetic.database.sqlcipher.SQLiteConnectionPool
- Opens a connection pool for the specified database.
- openDatabase(String,SQLiteDatabase.CursorFactory,int) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openDatabase(String,String,SQLiteDatabase.CursorFactory,int,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openDatabase(String,Array,SQLiteDatabase.CursorFactory,int,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openDatabase(String,SQLiteDatabase.CursorFactory,int,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openDatabase(String,String,SQLiteDatabase.CursorFactory,int,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openDatabase(String,Array,SQLiteDatabase.CursorFactory,int,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Open the database according to the flags OPEN_READWRITEOPEN_READONLYCREATE_IF_NECESSARY and/or NO_LOCALIZED_COLLATORS.
- openOrCreateDatabase(File,SQLiteDatabase.CursorFactory) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getPath(), factory, CREATE_IF_NECESSARY).
- openOrCreateDatabase(String,SQLiteDatabase.CursorFactory) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
- openOrCreateDatabase(String,SQLiteDatabase.CursorFactory,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler).
- openOrCreateDatabase(File,String,SQLiteDatabase.CursorFactory,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(File,Array,SQLiteDatabase.CursorFactory,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(String,String,SQLiteDatabase.CursorFactory,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(String,Array,SQLiteDatabase.CursorFactory,DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(File,String,SQLiteDatabase.CursorFactory,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(File,Array,SQLiteDatabase.CursorFactory,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(String,String,SQLiteDatabase.CursorFactory,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(String,Array,SQLiteDatabase.CursorFactory,DatabaseErrorHandler,SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).