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

AutoVacuumMode Enumeration
Determines the auto-vacuum flag in the database.
Syntax
'Declaration
 
Public Enum AutoVacuumMode 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
 
Members
MemberDescription
FullThe "freelist" pages are moved to the end of the file and the file is truncated to remove the freelist pages at every commit.
IncrementalA separate incremental_vacuum pragma must be invoked to cause the vacuum to occur.
NoneUnused database file pages are added to a "freelist" are reused for subsequent inserts. The database file does not shrink. This is the default mode.
Inheritance Hierarchy

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

See Also