Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmadevi S <uma@mono-cvs.ximian.com>2004-05-14 11:56:30 +0400
committerUmadevi S <uma@mono-cvs.ximian.com>2004-05-14 11:56:30 +0400
commit4e42fbd18a8b0084de9a220bfff42361611695e3 (patch)
tree2dde526081982f77cab3385f720b6d22ba6abc8d /mcs/class/System.Data/System.Data.OleDb
parent6a6f2c9260f8995014ef3dc8371bf363a137c38e (diff)
2004-05-14 Umadevi S (sumadevi@novell.com)
* OleDbCommand.cs - Completed implementing all the attribute svn path=/trunk/mcs/; revision=27350
Diffstat (limited to 'mcs/class/System.Data/System.Data.OleDb')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/ChangeLog3
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs8
2 files changed, 11 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb/ChangeLog b/mcs/class/System.Data/System.Data.OleDb/ChangeLog
index f1131219535..6640a836502 100644
--- a/mcs/class/System.Data/System.Data.OleDb/ChangeLog
+++ b/mcs/class/System.Data/System.Data.OleDb/ChangeLog
@@ -1,4 +1,7 @@
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
2004-05-14 Umadevi S (sumadevi@novell.com)
diff --git a/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs b/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
index fc999f39255..5ad886af951 100644
--- a/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
+++ b/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
@@ -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;