Removed debugging CWL that shows during normal execution.
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleType.cs
1 //
2 // OracleType.cs 
3 //
4 // Part of the Mono class libraries at
5 // mcs/class/System.Data.OracleClient/System.Data.OracleClient
6 //
7 // Assembly: System.Data.OracleClient.dll
8 // Namespace: System.Data.OracleClient
9 //
10 // Author: Tim Coleman <tim@timcoleman.com>
11 //
12 // Copyright (C) Tim Coleman, 2003
13 //
14 // Licensed under the MIT/X11 License.
15 //
16
17 using System;
18
19 namespace System.Data.OracleClient {
20         [Serializable]
21         public enum OracleType
22         {
23                 BFile = 0x01,
24                 Blob = 0x02,
25                 Byte = 0x17,
26                 Char = 0x03,
27                 Clob = 0x04,
28                 Cursor = 0x05, // REF CURSOR
29                 DateTime = 0x06,
30                 Double = 0x1e,
31                 Float = 0x1d,
32                 Int16 = 0x1b,
33                 Int32 = 0x1c,
34                 IntervalDayToSecond = 0x07,
35                 IntervalYearToMonth = 0x08,
36                 LongRaw = 0x09,
37                 LongVarChar = 0x0a,
38                 NChar = 0x0b,
39                 NClob = 0x0c,
40                 Number = 0x0d,
41                 NVarChar = 0x0e,
42                 Raw = 0x0f,
43                 RowId = 0x10,
44                 SByte = 0x1a,
45                 Timestamp = 0x12,
46                 TimestampLocal = 0x13,
47                 TimestampWithTZ = 0x14,
48                 UInt16 = 0x18,
49                 UInt32 = 0x19,
50                 VarChar = 0x16
51         }
52 }