Click or drag to resize
TransactionMode Enumeration
Database transaction modes.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public enum TransactionMode
Members
  Member nameValueDescription
Deferred0 No locks are acquired on the database until the database is first accessed.
Immediate1 RESERVED locks are acquired on all databases as soon as the BEGIN command is executed, without waiting for the database to be used.
Exclusive2 EXCLUSIVE locks acquired on all databases. No other database connection except for read_uncommitted connections will be able to read the database and no other connection without exception will be able to write the database until the transaction is complete.
See Also