Added Files.
[mono.git] / mcs / class / 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         public enum DbType
16         {
17                 AnsiString,
18                 Binary,
19                 Boolean,
20                 Byte,
21                 Currency,
22                 Date,
23                 DateTime,
24                 Decimal,
25                 Double,
26                 Guid,
27                 Int16,
28                 Int32,
29                 Int64,
30                 Object,
31                 SByte,
32                 Single,
33                 String,
34                 Time,
35                 UInt16,
36                 UInt32,
37                 UInt64,
38                 VarNumeric
39
40         }
41 }