2003-11-09 Pedro Mart�nez Juli� <yoros@wanadoo.es>
[mono.git] / mcs / class / System.Data / System.Data / CommandBehavior.cs
1 //
2 // System.Data.CommandBehavior.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12
13         /// <summary>
14         /// Specifies a description of the results and the affect on the database of the query command.
15         /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
16         /// </summary>
17         [Flags]
18         [Serializable]
19         public enum CommandBehavior
20         {
21                 Default = 0,
22                 SingleResult = 1,
23                 SchemaOnly = 2,
24                 KeyInfo = 4,
25                 SingleRow = 8,
26                 SequentialAccess = 16,
27                 CloseConnection = 32
28                 
29         }
30 }