2002-07-11 Rodrigo Moya <rodrigo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbDataAdapter.cs
index 9f487a21ce32334c4394120b7dcba2a278e4a15e..3c784076cdfdf57140a70f6f901c4d048fe9ea6e 100644 (file)
@@ -24,6 +24,8 @@ namespace System.Data.OleDb
                OleDbCommand insertCommand;
                OleDbCommand selectCommand;
                OleDbCommand updateCommand;
+               MissingMappingAction missingMappingAction;
+               MissingSchemaAction missingSchemaAction;
 
                static readonly object EventRowUpdated = new object ();
                static readonly object EventRowUpdating = new object ();
@@ -106,6 +108,16 @@ namespace System.Data.OleDb
                        }
                }
 
+               MissingMappingAction IDataAdapter.MissingMappingAction {
+                       get { return missingMappingAction; }
+                       set { missingMappingAction = value; }
+               }
+
+               MissingSchemaAction IDataAdapter.MissingSchemaAction {
+                       get { return missingSchemaAction; }
+                       set { missingSchemaAction = value; }
+               }
+               
                IDbCommand IDbDataAdapter.UpdateCommand {
                        get { return UpdateCommand; }
                        set {