dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / LockingMode Enumeration

LockingMode Enumeration
Determines whether the database is locked or not.
Syntax
'Declaration
 
Public Enum LockingMode 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
 
Members
MemberDescription
ExclusiveThe database connection never releases file locks. The first time the database is read in exclusive mode, a shared lock is obtained and held. The first time the database is written, an exclusive lock is obtained and held.
NormalThe database connection unlocks the database file at the conclusion of each read or write transaction. This is the default behavior.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Devart.Data.SQLite.LockingMode

See Also