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

In This Topic
    SynchronizationMode Enumeration
    In This Topic
    Determines how the database is synchronized with writing to hard disk.
    Syntax
    'Declaration
     
    Public Enum SynchronizationMode 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    public enum SynchronizationMode : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberDescription
    Extra 
    FullThe database engine will pause at critical moments to make sure that data has actually been written to the disk surface before continuing.
    NormalThe database engine will still pause at the most critical moments, but less often than in Full mode. The Normal mode is faster than the Full mode. This is the default mode.
    OffThe database engine continues without pausing as soon as it has handed data off to the operating system. The database might become corrupted if the operating system crashes or the computer loses power. This is the fastest mode.
    Inheritance Hierarchy

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

    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