Database column types

Namespace: Wiker.WIDatabase
Assembly: 

Syntax

C#
public enum eDataType
Visual Basic
Public Enumeration eDataType
Visual C++
public enum class eDataType

Members

Member nameValueDescription
None0Unassigned
Bool1True or False

0 or 1

Byte2Single Byte

0 to 255

Int163Short

-32767 to 32767

Int324Int

-2147483647 to 2147483647

Int645Long

-9223372036854775807 to 9223372036854775807

Decimal6-79228162514264300000000000000 to 79228162514264300000000000000
Double7-1.7976931348623E+308 to 1.7976931348623E+308
Float8-3.40282347E+38 to 3.40282347E+38
DateTime9YYYY-MM-DD HH:MM:SS.fffffff
Char10Single character

0x0001 to 0xffff

VarChar11Variable length char array
Text12Large amount of text data
Image13Image file
Binary14Variable length binary data

See Also