'Declaration Public Enum MySqlType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
public enum MySqlType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
'Declaration Public Enum MySqlType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
public enum MySqlType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Member | Description |
---|---|
BigInt | A MySQL BIGINT data type that contains a 64-bit signed integer. Represented as the System.Int64. |
Binary | A MySQL BINARY type is similar to the CHAR type, but stores binary byte strings rather than non-binary character strings. Represented as the System.String. |
Bit | A MySQL BIT data type that contains a bit mask. Represented as the System.Int64. |
Blob | A MySQL BLOB data type that contains a variable-length stream of binary data. Represented as the array of System.Byte. |
Char | A CHAR data type that contains a fixed-length character string. Represented as the System.String. |
Date | A MySQL DATE data type that contains a fixed-length representation of a date value. Represented as the System.DateTime. |
DateTime | A MySQL DATETIME data type that contains a fixed-length representation of a date and time value. Represented as the System.DateTime. |
Decimal | A MySQL DECIMAL data type that contains values ranging from 1.0 x 10(-28) to approximately 7.9 x 10(28) with 28-29 significant digits. Represented as the System.Decimal. |
Double | A MySQL DOUBLE data type. Represented as the System.Double. |
Float | A MySQL FLOAT data type. Represented as the System.Float. |
Geometry | A MySQL Geometric (GIS) data types. Represented as the array of System.Byte. |
Guid | A MySQL BINARY(16) data type that contains a guid value. Represented as the System.Guid. |
Int | A MySQL INT data type that contains a 32-bit signed integer. Represented as the System.Int32. |
Json | |
SmallInt | A MySQL SMALLINT data type that contains a 16-bit signed integer. Represented as the System.Int16. |
Text | A MySQL TEXT data type that contains a variable-length character string. Represented as the System.String. |
Time | A MySQL TIME data type that contains a fixed-length representation of a time value. Represented as the System.TimeSpan. |
TimeStamp | A MySQL TIMESTAMP data type that contains date and time, including seconds. Represented as the System.DateTime. |
TinyInt | A MySQL UNSIGNED TINYINT data type that contains a 8-bit unsigned integer. Represented as the System.Byte. |
VarBinary | A MySQL VARBINARY type is similar to the VARCHAR type, but stores binary byte strings rather than non-binary character strings. Represented as the System.String. |
VarChar | A MySQL VARCHAR data type that contains a variable-length character string. Represented as the System.String. |
Year | A MySQL YEAR data type that contains a year value. Represented as the System.Int16. |
System.Object
System.ValueType
System.Enum
Devart.Data.MySql.MySqlType
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2