The fields of Android.Database.Sqlite.SQLiteDatabase are listed below. For a list of all members, see the SQLiteDatabase Members list.
See Also: Inherited members from Android.Database.Sqlite.SQLiteClosable
const | ConflictAbort | Conflict (2). When a constraint violation occurs,no ROLLBACK is executed so changes from prior commands within the same transaction are preserved. |
const | ConflictFail | Conflict (3). When a constraint violation occurs, the command aborts with a return code SQLITE_CONSTRAINT. |
const | ConflictIgnore | Conflict (4). When a constraint violation occurs, the one row that contains the constraint violation is not inserted or changed. |
const | ConflictNone | Conflict (0). Use the following when no conflict action is specified. |
const | ConflictReplace | Conflict (5). When a UNIQUE constraint violation occurs, the pre-existing rows that are causing the constraint violation are removed prior to inserting or updating the current row. |
const | ConflictRollback | Conflict (1). When a constraint violation occurs, an immediate ROLLBACK occurs, thus ending the current transaction, and the command aborts with a return code of SQLITE_CONSTRAINT. |
const | MaxSqlCacheSize | int (100). Absolute max value that can be set by SQLiteDatabase.SetMaxSqlCacheSize(int). |
const | SqliteMaxLikePatternLength | int (50000). Maximum Length Of A LIKE Or GLOB Pattern The pattern matching algorithm used in the default LIKE and GLOB implementation of SQLite can exhibit O(N^2) performance (where N is the number of characters in the pattern) for certain pathological cases. |