2004-03-29 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / MissingSchemaAction.cs
1 //
2 // System.Data.MissingSchemaAction.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies the action to take when adding data to the DataSet and the required DataTable or DataColumn is missing.
16         /// </summary>
17         [Serializable]
18         public enum MissingSchemaAction
19         {
20                 Add = 1,
21                 Ignore = 2,
22                 Error = 3,
23                 AddWithKey = 4
24         }
25 }