Android.Database.Sqlite.SQLiteDatabase: Field Members

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

Public Fields

const
ConflictAbortConflict (2). When a constraint violation occurs,no ROLLBACK is executed so changes from prior commands within the same transaction are preserved.
const
ConflictFailConflict (3). When a constraint violation occurs, the command aborts with a return code SQLITE_CONSTRAINT.
const
ConflictIgnoreConflict (4). When a constraint violation occurs, the one row that contains the constraint violation is not inserted or changed.
const
ConflictNoneConflict (0). Use the following when no conflict action is specified.
const
ConflictReplaceConflict (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
ConflictRollbackConflict (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
MaxSqlCacheSizeint (100). Absolute max value that can be set by SQLiteDatabase.SetMaxSqlCacheSize(int).
const
SqliteMaxLikePatternLengthint (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.