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

In This Topic
    SQLiteType Enumeration
    In This Topic
    Specifies the data type of a field or a parameter.
    Syntax
    'Declaration
     
    Public Enum SQLiteType 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    Members
    MemberDescription
    BlobThe SQLite BLOB data type that contains a variable-length stream of binary data. Represented as the array of System.Byte.
    DateTimeThe SQLite DATETIME data type that contains a fixed-length representation of a date and time value. Represented as the System.DateTime.
    DoubleThe SQLite DOUBLE data type. Represented as the System.Double.
    GuidThe GUID data type that contains a 16-byte Guid. Represented as the System.Guid.
    Int16The SQLite SMALLINT data type that contains a 32-bit signed integer. Represented as the System.Int16.
    Int32The SQLite INT data type that contains a 32-bit signed integer. Represented as the System.Int32.
    Int64The SQLite LONG data type that contains a 32-bit signed integer. Represented as the System.Int64.
    NullThe database NULL value, represented as DBNull.Value.
    TextThe SQLite TEXT data type that contains a variable-length character string. Represented as the System.String.
    TimeThe TIME data type that contains a fixed-length representation of a time value. Represented as the System.TimeSpan.
    Remarks
    This table shows mappings between SQLiteType values, SQLite data types, Microsoft .NET Framework types.
    Inheritance Hierarchy

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

    See Also