New test.
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient.Oci / OciExecuteMode.cs
1 // 
2 // OciExecuteMode.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 OciExecuteMode {
23                 Default = 0x00,
24                 BatchMode = 0x01,
25                 ExactFetch = 0x02,
26                 KeepFetchState = 0x04,
27                 ScrollableCursor = 0x08,
28                 DescribeOnly = 0x10,
29                 CommitOnSuccess = 0x20,
30                 NonBlocking = 0x40,
31                 BatchErrors = 0x80,
32                 ParseOnly = 0x100,
33                 ShowDmlWarnings = 0x400
34         }
35 }