(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient.Oci / OciTransactionFlags.cs
blob506a59b47fe2370b494263f16df6a91c2877d683
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 //
18 using System;
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