File: OciDataType.cs

package info (click to toggle)
mono 2.6.7-5.1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 327,344 kB
  • ctags: 413,649
  • sloc: cs: 2,471,883; xml: 1,768,594; ansic: 350,665; sh: 13,644; makefile: 8,640; perl: 1,784; asm: 717; cpp: 209; python: 146; sql: 81; sed: 16
file content (54 lines) | stat: -rw-r--r-- 1,121 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//
// OciDataType.cs
//
// Part of managed C#/.NET library System.Data.OracleClient.dll
//
// Part of the Mono class libraries at
// mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
//
// Assembly: System.Data.OracleClient.dll
// Namespace: System.Data.OracleClient.Oci
//
// Authors:
//     Tim Coleman <tim@timcoleman.com>
//     Daniel Morgan <danielmorgan@verizon.net>
//
// Copyright (C) Tim Coleman, 2003
// Copyright (C) Daniel Morgan, 2005
//
//

namespace System.Data.OracleClient.Oci {
	internal enum OciDataType : uint {
		VarChar2 = 0x01,
		Number = 0x02,
		Integer = 0x03,
		Float = 0x04,
		String = 0x05,
		VarNum = 0x06,
		Long = 0x08,
		VarChar = 0x09,
		RowId = 0x0b,
		Date = 0x0c,
		VarRaw = 0x0f,
		Raw = 0x17,
		LongRaw = 0x18,
		UnsignedInt = 0x44,
		LongVarChar = 0x5e,
		LongVarRaw = 0x5f,
		Char = 0x60,
		CharZ = 0x61,
		RowIdDescriptor = 0x68,
		NamedDataType = 0x6c,
		Ref = 0x6e,
		Clob = 0x70,
		Blob = 0x71,
		BFile = 0x72,
		RSet = 0x74, // REF CURSOR
		OciString = 0x9b,
		OciDate = 0x9c,
		TimeStamp = 0xbb,
		IntervalYearToMonth = 0xbd,
		IntervalDayToSecond = 0xbe
	}
}