2001-10-12 Ravi Pratap <ravi@ximian.com>
[mono.git] / mcs / class / 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         public enum CommandBehavior
18         {
19                 CloseConnection, 
20                 KeyInfo, 
21                 SchemaOnly, 
22                 SequentialAccess, 
23                 SingleResult, 
24                 SingleRow
25         }
26 }