Class SqliteDataType
Represents a DB data type.
public sealed class SqliteDataType : Enumeration<SqliteDataType, SqliteType>, IEquatable<SqliteDataType>, IComparable<SqliteDataType>, IComparable, ISqlDataType
- Inheritance
-
SqliteDataType
- Implements
- Inherited Members
Remarks
SqliteDialect implementation.
Fields
Any
Represents the ANY type.
public static readonly SqliteDataType Any
Field Value
Blob
Represents the BLOB type.
public static readonly SqliteDataType Blob
Field Value
Integer
Represents the INTEGER type.
public static readonly SqliteDataType Integer
Field Value
Real
Represents the REAL type.
public static readonly SqliteDataType Real
Field Value
Text
Represents the TEXT type.
public static readonly SqliteDataType Text
Field Value
Properties
DbType
DbType of this data type.
public DbType DbType { get; }
Property Value
Dialect
Specifies the SQL dialect of this data type.
public SqlDialect Dialect { get; }