2004-05-14 Umadevi S (sumadevi@novell.com)
authorUmadevi S <uma@mono-cvs.ximian.com>
Mon, 17 May 2004 08:56:53 +0000 (08:56 -0000)
committerUmadevi S <uma@mono-cvs.ximian.com>
Mon, 17 May 2004 08:56:53 +0000 (08:56 -0000)
        * OleDbAdapter.cs -Implemented attributes, changed method signature for fill

svn path=/trunk/mcs/; revision=27505

mcs/class/System.Data/System.Data.OleDb/ChangeLog
mcs/class/System.Data/System.Data.OleDb/OleDbDataAdapter.cs

index 6640a836502e6a541c60eb96e8ca0ffa34d115c4..9f202a8c7a1ac3c41812268c21ac62b072873d71 100644 (file)
@@ -1,3 +1,6 @@
+2004-05-14 Umadevi S (sumadevi@novell.com)
+        * OleDbAdapter.cs -Implemented attributes, changed method signature for fill
+
 2004-05-14 Umadevi S (sumadevi@novell.com)
         * OleDbCommand.cs - Completed implementing all the attributes
 
index 950e229fef7ae529d7fab3ffebbc8ce67523d3d2..390975c530cf8eed077144ccf508fc47df87ceb8 100644 (file)
@@ -62,6 +62,7 @@ namespace System.Data.OleDb
                #region Properties
                
                [DefaultValue ("")]
+               [DataCategory ("Update")]
                [DataSysDescriptionAttribute ("Used during Update for deleted rows in DataSet")]
                [EditorAttribute ("Microsoft.VSDesigner.Data.Design.DBCommandEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
                public OleDbCommand DeleteCommand {
@@ -74,6 +75,7 @@ namespace System.Data.OleDb
                }
 
                [DefaultValue ("")]
+               [DataCategory ("Update")]
                 [DataSysDescriptionAttribute ("Used during Update for new rows in DataSet")]
                 [EditorAttribute ("Microsoft.VSDesigner.Data.Design.DBCommandEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
                public OleDbCommand InsertCommand {
@@ -86,6 +88,7 @@ namespace System.Data.OleDb
                }
 
                [DefaultValue ("")]
+               [DataCategory ("Fill")]
                 [DataSysDescriptionAttribute ("Used during Fill/FillSchema")]
                 [EditorAttribute ("Microsoft.VSDesigner.Data.Design.DBCommandEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
                public OleDbCommand SelectCommand {
@@ -98,6 +101,7 @@ namespace System.Data.OleDb
                }
 
                [DefaultValue ("")]
+               [DataCategory ("Update")]
                 [DataSysDescriptionAttribute ("Used during Update for modified rows in DataSet")]
                 [EditorAttribute ("Microsoft.VSDesigner.Data.Design.DBCommandEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
                public OleDbCommand UpdateCommand {
@@ -216,7 +220,7 @@ namespace System.Data.OleDb
                }
 
                [MonoTODO]
-                public int Fill(DataTable datatable, Object adoDBRecordSet, String srcTable) {
+                public int Fill(DataSet dataset, Object adoDBRecordSet, String srcTable) {
                         throw new NotImplementedException ();
                 }