Database column types
Namespace: Wiker.WIDatabaseAssembly:
Syntax
C# |
---|
public enum eDataType |
Visual Basic |
---|
Public Enumeration eDataType |
Visual C++ |
---|
public enum class eDataType |
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | Unassigned | |
Bool | 1 | True or False 0 or 1 | |
Byte | 2 | Single Byte 0 to 255 | |
Int16 | 3 | Short -32767 to 32767 | |
Int32 | 4 | Int -2147483647 to 2147483647 | |
Int64 | 5 | Long -9223372036854775807 to 9223372036854775807 | |
Decimal | 6 | -79228162514264300000000000000 to 79228162514264300000000000000 | |
Double | 7 | -1.7976931348623E+308 to 1.7976931348623E+308 | |
Float | 8 | -3.40282347E+38 to 3.40282347E+38 | |
DateTime | 9 | YYYY-MM-DD HH:MM:SS.fffffff | |
Char | 10 | Single character 0x0001 to 0xffff | |
VarChar | 11 | Variable length char array | |
Text | 12 | Large amount of text data | |
Image | 13 | Image file | |
Binary | 14 | Variable length binary data |