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