2004-03-03 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data / DbType.cs
1 //
2 // System.Data.DbType.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Gets the data type of a field, a property, or a Parameter object of a .NET data provider.
14         /// </summary>
15         [Serializable]
16         public enum DbType
17         {
18                 AnsiString = 0,
19                 Binary = 1,
20                 Byte = 2,
21                 Boolean = 3,
22                 Currency = 4,
23                 Date = 5,
24                 DateTime = 6,
25                 Decimal = 7,
26                 Double = 8,
27                 Guid = 9,
28                 Int16 = 10,
29                 Int32 = 11,
30                 Int64 = 12,
31                 Object = 13,
32                 SByte = 14,
33                 Single = 15,
34                 String = 16,
35                 Time = 17,
36                 UInt16 = 18,
37                 UInt32 = 19,
38                 UInt64 = 20,
39                 VarNumeric = 21,
40                 AnsiStringFixedLength = 22,
41                 StringFixedLength = 23
42
43         }
44 }