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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also