2004-05-14 Umadevi S (sumadevi@novell.com)
authorUmadevi S <uma@mono-cvs.ximian.com>
Fri, 14 May 2004 07:56:30 +0000 (07:56 -0000)
committerUmadevi S <uma@mono-cvs.ximian.com>
Fri, 14 May 2004 07:56:30 +0000 (07:56 -0000)
        * OleDbCommand.cs - Completed implementing all the attribute

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

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

index f1131219535bffb6ad0e435a02ec0950abf5588f..6640a836502e6a541c60eb96e8ca0ffa34d115c4 100644 (file)
@@ -1,3 +1,6 @@
+2004-05-14 Umadevi S (sumadevi@novell.com)
+        * OleDbCommand.cs - Completed implementing all the attributes
+
 2004-05-14 Umadevi S (sumadevi@novell.com)
         * OleDbCommand.cs - Completed implementing all the attribute
 
index fc999f3925575a18122b3054405c1dda5f36af00..5ad886af951b7c2c5ab868f11d01bfeddf9235da 100644 (file)
@@ -47,6 +47,8 @@ namespace System.Data.OleDb
 
                #region Properties
 
+               [DataSysDescriptionAttribute ("The DataAdapter for which to automatically generate OleDbCommands")]
+               [DefaultValue (null)]
                public OleDbDataAdapter DataAdapter {
                        get {
                                return adapter;
@@ -56,6 +58,9 @@ namespace System.Data.OleDb
                        }
                }
 
+               [BrowsableAttribute (false)]
+               [DataSysDescriptionAttribute ("The prefix string wrapped around sql objects")]
+                [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
                public string QuotePrefix {
                        get {
                                return quotePrefix;
@@ -65,6 +70,9 @@ namespace System.Data.OleDb
                        }
                }
 
+               [BrowsableAttribute (false)]
+                [DataSysDescriptionAttribute ("The suffix string wrapped around sql objects")]
+                [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
                public string QuoteSuffix {
                        get {
                                return quoteSuffix;