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:
authorNagappan Alagappan <nagappan@gmail.com>2006-12-20 20:17:24 +0300
committerNagappan Alagappan <nagappan@gmail.com>2006-12-20 20:17:24 +0300
commit947def72f22d45739f3472094214b85e46aead90 (patch)
tree34a677ddf8d5bb130e74f5a838578f9d73986aaa /mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
parent2d2bd99970a0be509194a6197bc4e3270df1b4e3 (diff)
2006-12-20 Nagappan A <anagappan@novell.com>
* DataColumnMapping.cs (GetDataColumnBySchemaAction): Implemented 2.0 profile method. * DbDataReader.cs: Removed TODO's where ever the implementation is available. * RowUpdatedEventArgs.cs: Removed TODO's where ever the implementation is available. * DataAdapter.cs (FillInternal): Moved from DbDataAdapater.cs to here. (BuildSchema): Moved from DbDataAdapter.cs. (FillTable): Moved from DbDataAdapter.cs. (OnFillErrorInternal): Implemented new internal method to raise an event. (SetupSchema): Moved from DbDataAdapter.cs. (FillInterl): Moved common implementation from DbDataAdapter.cs. Removed TODO's where ever the implementation is available. * DbDataAdapter.cs (OnRowUpdated): Implemented protected method. (OnRowUpdating): Implemented protected method. (CreateFillErrorEvent): Moved to DataAdapter.cs. (Fill): Moved common implementation to DataAdapter.cs. (FillTable): Moved to DataAdapter.cs. (BuildSchema): Moved to DataAdapter.cs. (SetupSchema): Moved to DataAdapter.cs. svn path=/trunk/mcs/; revision=69818
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
index 4442a4ae2af..c72ec4130b5 100644
--- a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
@@ -122,10 +122,9 @@ namespace System.Data.Common {
throw new NotImplementedException ();
}
- [MonoTODO]
public DbCommand GetDeleteCommand ()
{
- return (DbCommand) _dbDataAdapter._deleteCommand;
+ return (DbCommand) _dbDataAdapter.DeleteCommand;
}
[MonoTODO]
@@ -134,10 +133,9 @@ namespace System.Data.Common {
throw new NotImplementedException ();
}
- [MonoTODO]
public DbCommand GetInsertCommand ()
{
- return (DbCommand) _dbDataAdapter._insertCommand;
+ return (DbCommand) _dbDataAdapter.InsertCommand;
}
[MonoTODO]
@@ -150,10 +148,9 @@ namespace System.Data.Common {
protected abstract string GetParameterName (String parameterName);
protected abstract string GetParameterPlaceholder (int parameterOrdinal);
- [MonoTODO]
public DbCommand GetUpdateCommand ()
{
- return (DbCommand) _dbDataAdapter._updateCommand;
+ return (DbCommand) _dbDataAdapter.UpdateCommand;
}
[MonoTODO]