Merge pull request #2417 from razzfazz/guard_substr
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient.Oci / OciTransactionFlags.cs
1 // 
2 // OciTransactionFlags.cs 
3 //  
4 // Part of managed C#/.NET library System.Data.OracleClient.dll
5 //
6 // Part of the Mono class libraries at
7 // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
8 //
9 // Assembly: System.Data.OracleClient.dll
10 // Namespace: System.Data.OracleClient.Oci
11 // 
12 // Author: 
13 //     Tim Coleman <tim@timcoleman.com>
14 //         
15 // Copyright (C) Tim Coleman, 2003
16 // 
17
18 using System;
19
20 namespace System.Data.OracleClient.Oci {
21         [Flags]
22         internal enum OciTransactionFlags {
23                 New = 0x01,
24                 Resume = 0x04,
25                 ReadOnly = 0x100,
26                 ReadWrite = 0x200,
27                 Serializable = 0x400,
28                 Tight = 0x10000,
29                 Loose = 0x20000
30         }
31 }