Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SqlDbType.cs
Go to the documentation of this file.
1namespace System.Data;
2
3public enum SqlDbType
4{
5 BigInt = 0,
6 Binary = 1,
7 Bit = 2,
8 Char = 3,
9 DateTime = 4,
10 Decimal = 5,
11 Float = 6,
12 Image = 7,
13 Int = 8,
14 Money = 9,
15 NChar = 10,
16 NText = 11,
17 NVarChar = 12,
18 Real = 13,
20 SmallDateTime = 15,
21 SmallInt = 16,
22 SmallMoney = 17,
23 Text = 18,
24 Timestamp = 19,
25 TinyInt = 20,
26 VarBinary = 21,
27 VarChar = 22,
28 Variant = 23,
29 Xml = 25,
30 Udt = 29,
31 Structured = 30,
32 Date = 31,
33 Time = 32,
34 DateTime2 = 33,
36}