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

In This Topic
    TempStoreMode Enumeration
    In This Topic
    Determines where temporary tables and indices are stored.
    Syntax
    'Declaration
     
    Public Enum TempStoreMode 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    Members
    MemberDescription
    DefaultThe location of temporary data is defined by C preprocessor macro TEMP_STORE. Currently the generally available library stores temporary data in memory.
    FileThe temporary data is located in a file, in the directory specified by the SQLiteConnectionStringBuilder.TempStoreDirectory property.
    MemoryThe temporary data is located in memory.
    Inheritance Hierarchy

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

    See Also