'Declaration Public Enum SQLiteType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
public enum SQLiteType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
'Declaration Public Enum SQLiteType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
public enum SQLiteType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
| Member | Description |
|---|---|
| Blob | The SQLite BLOB data type that contains a variable-length stream of binary data. Represented as the array of System.Byte. |
| DateTime | The SQLite DATETIME data type that contains a fixed-length representation of a date and time value. Represented as the System.DateTime. |
| Double | The SQLite DOUBLE data type. Represented as the System.Double. |
| Guid | The GUID data type that contains a 16-byte Guid. Represented as the System.Guid. |
| Int16 | The SQLite SMALLINT data type that contains a 32-bit signed integer. Represented as the System.Int16. |
| Int32 | The SQLite INT data type that contains a 32-bit signed integer. Represented as the System.Int32. |
| Int64 | The SQLite LONG data type that contains a 32-bit signed integer. Represented as the System.Int64. |
| Null | The database NULL value, represented as DBNull.Value. |
| Text | The SQLite TEXT data type that contains a variable-length character string. Represented as the System.String. |
| Time | The TIME data type that contains a fixed-length representation of a time value. Represented as the System.TimeSpan. |
System.Object
System.ValueType
System.Enum
Devart.Data.SQLite.SQLiteType