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:
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>2002-11-27 03:04:49 +0300
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>2002-11-27 03:04:49 +0300
commit461130991e0c8567dc7dcb7cd0a626e51baab5d2 (patch)
treeec6c4707cc356f2c9bd2959a7462271155fac577 /mcs/class/System.Data/System.Data.OleDb
parent5a0513f4561e478c2854ac43c60563205b945baf (diff)
*** empty log message ***
svn path=/trunk/mcs/; revision=9199
Diffstat (limited to 'mcs/class/System.Data/System.Data.OleDb')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs35
1 files changed, 23 insertions, 12 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs b/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
index bc430724742..50ab006116e 100644
--- a/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
+++ b/mcs/class/System.Data/System.Data.OleDb/OleDbCommandBuilder.cs
@@ -48,28 +48,39 @@ namespace System.Data.OleDb
#region Properties
public OleDbDataAdapter DataAdapter {
- get { return adapter; }
- set { adapter = value; }
+ get {
+ return adapter;
+ }
+ set {
+ adapter = value;
+ }
}
public string QuotePrefix {
- get { return quotePrefix; }
- set { quotePrefix = value; }
+ get {
+ return quotePrefix;
+ }
+ set {
+ quotePrefix = value;
+ }
}
public string QuoteSuffix {
- get { return quoteSuffix; }
- set { quoteSuffix = value; }
+ get {
+ return quoteSuffix;
+ }
+ set {
+ quoteSuffix = value;
+ }
}
#endregion // Properties
#region Methods
- [MonoTODO]
public static void DeriveParameters (OleDbCommand command)
{
- throw new NotImplementedException ();
+ throw new NotImplementedException ();
}
[MonoTODO]
@@ -81,25 +92,25 @@ namespace System.Data.OleDb
[MonoTODO]
public OleDbCommand GetDeleteCommand ()
{
- throw new NotImplementedException ();
+ throw new NotImplementedException ();
}
[MonoTODO]
public OleDbCommand GetInsertCommand ()
{
- throw new NotImplementedException ();
+ throw new NotImplementedException ();
}
[MonoTODO]
public OleDbCommand GetUpdatetCommand ()
{
- throw new NotImplementedException ();
+ throw new NotImplementedException ();
}
[MonoTODO]
public void RefreshSchema ()
{
- throw new NotImplementedException ();
+ throw new NotImplementedException ();
}
#endregion // Methods