A
B
C
D
E
F
G
H
I
L
M
N
O
P
Q
R
S
T
U
V
W
Y
O
- onBeforeDelete(net.zetetic.database.sqlcipher.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 at all) 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
- onCommit() - function in net.zetetic.database.sqlcipher.SQLiteTransactionListener
- Called immediately before commiting the transaction.
- onConfigure(net.zetetic.database.sqlcipher.SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database connection is being configured, to enable features such as write-ahead logging or foreign key support.
- onCorruption(net.zetetic.database.sqlcipher.SQLiteDatabase,android.database.sqlite.SQLiteException) - function in net.zetetic.database.DatabaseErrorHandler
- The method invoked when database corruption is detected.
- onCorruption(net.zetetic.database.sqlcipher.SQLiteDatabase,android.database.sqlite.SQLiteException) - function in net.zetetic.database.DefaultDatabaseErrorHandler
- defines the default method to be invoked when database corruption is detected.
- onCreate(net.zetetic.database.sqlcipher.SQLiteDatabase) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database is created for the first time.
- onDowngrade(net.zetetic.database.sqlcipher.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.AbstractCursor
- This function is called every time the cursor is successfully scrolled to a new position, giving the subclass a chance to update any state it may have.
- onMove(int,int) - function in net.zetetic.database.AbstractCursor
- This function is called every time the cursor is successfully scrolled to a new position, giving the subclass a chance to update any state it may have.
- onMove(int,int) - function in net.zetetic.database.MatrixCursor
- This function is called every time the cursor is successfully scrolled to a new position, giving the subclass a chance to update any state it may have.
- onMove(int,int) - function in net.zetetic.database.sqlcipher.SQLiteCursor
- This function is called every time the cursor is successfully scrolled to a new position, giving the subclass a chance to update any state it may have.
- onOpen(net.zetetic.database.sqlcipher.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(net.zetetic.database.sqlcipher.SQLiteDatabase,int,int) - function in net.zetetic.database.sqlcipher.SQLiteOpenHelper
- Called when the database needs to be upgraded.
- open(java.lang.String) - function in net.zetetic.database.sqlcipher.CloseGuard
- If CloseGuard is enabled,
openinitializes the instance with a warning that the caller should have explicitly called theclosermethod instead of relying on finalization. - open(net.zetetic.database.sqlcipher.SQLiteDatabaseConfiguration) - function in net.zetetic.database.sqlcipher.SQLiteConnectionPool
- Opens a connection pool for the specified database.
- open(java.lang.String) - function in net.zetetic.database.sqlcipher.driver.SQLCipherDriver
- openDatabase(java.lang.String,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,int,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.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(java.lang.String,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,int,net.zetetic.database.sqlcipher.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(java.lang.String,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,int,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.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(java.lang.String,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,int,net.zetetic.database.sqlcipher.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(java.lang.String,net.zetetic.database.sqlcipher.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(java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,int,net.zetetic.database.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.
- openOrCreateDatabase(java.io.File,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(java.io.File,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(java.io.File,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(java.io.File,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getAbsolutePath(), password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(java.io.File,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(file.getPath(), factory, CREATE_IF_NECESSARY).
- openOrCreateDatabase(java.lang.String,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(java.lang.String,kotlin.Array,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(java.lang.String,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, null).
- openOrCreateDatabase(java.lang.String,java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler,net.zetetic.database.sqlcipher.SQLiteDatabaseHook) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, password, factory, CREATE_IF_NECESSARY, errorHandler, databaseHook).
- openOrCreateDatabase(java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
- openOrCreateDatabase(java.lang.String,net.zetetic.database.sqlcipher.SQLiteDatabase.CursorFactory,net.zetetic.database.DatabaseErrorHandler) - function in net.zetetic.database.sqlcipher.SQLiteDatabase
- Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler).