2004-03-23 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbType.cs
1 //
2 // System.Data.OleDb.OleDbType
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
10 //
11
12 using System.Data;
13 using System.Data.Common;
14
15 namespace System.Data.OleDb
16 {
17         public enum OleDbType {
18                 BigInt,
19                 Binary,
20                 Boolean,
21                 BSTR,
22                 Char,
23                 Currency,
24                 Date,
25                 DBDate,
26                 DBTime,
27                 DBTimeStamp,
28                 Decimal,
29                 Double,
30                 Empty,
31                 Error,
32                 Filetime,
33                 Guid,
34                 IDispatch,
35                 Integer,
36                 IUnknown,
37                 LongVarBinary,
38                 LongVarChar,
39                 LongVarWChar,
40                 Numeric,
41                 PropVariant,
42                 Single,
43                 SmallInt,
44                 TinyInt,
45                 UnsignedBigInt,
46                 UnsignedInt,
47                 UnsignedSmallInt,
48                 UnsignedTinyInt,
49                 VarBinary,
50                 VarChar,
51                 Variant,
52                 VarNumeric,
53                 VarWChar,
54                 WChar
55         }
56 }