This topic has not yet been rated - Rate this topic

DbDataAdapter Class

Aids implementation of the IDbDataAdapter interface. Inheritors of DbDataAdapter implement a set of functions to provide strong typing, but inherit most of the functionality needed to fully implement a DataAdapter.

Namespace:  System.Data.Common
Assembly:  System.Data (in System.Data.dll)
public abstract class DbDataAdapter : DataAdapter, 
	IDbDataAdapter, IDataAdapter, ICloneable

The DbDataAdapter type exposes the following members.

  Name Description
Protected method Supported by the XNA Framework DbDataAdapter() Initializes a new instance of a DataAdapter class.
Protected method Supported by the XNA Framework DbDataAdapter(DbDataAdapter) Initializes a new instance of a DataAdapter class from an existing object of the same type.
Top
  Name Description
Public property Supported by the XNA Framework AcceptChangesDuringFill Gets or sets a value indicating whether AcceptChanges is called on a DataRow after it is added to the DataTable during any of the Fill operations. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework AcceptChangesDuringUpdate Gets or sets whether AcceptChanges is called during a Update. (Inherited from DataAdapter.)
Protected property CanRaiseEvents Gets a value indicating whether the component can raise an event. (Inherited from Component.)
Public property Container Gets the IContainer that contains the Component. (Inherited from Component.)
Public property Supported by the XNA Framework ContinueUpdateOnError Gets or sets a value that specifies whether to generate an exception when an error is encountered during a row update. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework DeleteCommand Gets or sets a command for deleting records from the data set.
Protected property DesignMode Gets a value that indicates whether the Component is currently in design mode. (Inherited from Component.)
Protected property Supported by the XNA Framework Events Gets the list of event handlers that are attached to this Component. (Inherited from Component.)
Protected property Supported by the XNA Framework FillCommandBehavior Gets or sets the behavior of the command used to fill the data adapter.
Public property Supported by the XNA Framework FillLoadOption Gets or sets the LoadOption that determines how the adapter fills the DataTable from the DbDataReader. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework InsertCommand Gets or sets a command used to insert new records into the data source.
Public property Supported by the XNA Framework MissingMappingAction Determines the action to take when incoming data does not have a matching table or column. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework MissingSchemaAction Determines the action to take when existing DataSet schema does not match incoming data. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework ReturnProviderSpecificTypes Gets or sets whether the Fill method should return provider-specific values or common CLS-compliant values. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework SelectCommand Gets or sets a command used to select records in the data source.
Public property Supported by the XNA Framework Site Gets or sets the ISite of the Component. (Inherited from Component.)
Public property Supported by the XNA Framework TableMappings Gets a collection that provides the master mapping between a source table and a DataTable. (Inherited from DataAdapter.)
Public property Supported by the XNA Framework UpdateBatchSize Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.
Public property Supported by the XNA Framework UpdateCommand Gets or sets a command used to update records in the data source.
Top
  Name Description
Protected method Supported by the XNA Framework AddToBatch Adds a IDbCommand to the current batch.
Protected method Supported by the XNA Framework ClearBatch Removes all IDbCommand objects from the batch.
Protected method Supported by the XNA Framework CloneInternals Obsolete. Creates a copy of this instance of DataAdapter. (Inherited from DataAdapter.)
Public method CreateObjRef Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from MarshalByRefObject.)
Protected method Supported by the XNA Framework CreateRowUpdatedEvent Initializes a new instance of the RowUpdatedEventArgs class.
Protected method Supported by the XNA Framework CreateRowUpdatingEvent Initializes a new instance of the RowUpdatingEventArgs class.
Protected method Supported by the XNA Framework CreateTableMappings Creates a new DataTableMappingCollection. (Inherited from DataAdapter.)
Public method Supported by the XNA Framework Dispose() Releases all resources used by the Component. (Inherited from Component.)
Protected method Supported by the XNA Framework Dispose(Boolean) Releases the unmanaged resources used by the DbDataAdapter and optionally releases the managed resources. (Overrides DataAdapter.Dispose(Boolean).)
Public method Supported by the XNA Framework Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by the XNA Framework ExecuteBatch Executes the current batch.
Public method Supported by the XNA Framework Fill(DataSet) Adds or refreshes rows in the DataSet. (Overrides DataAdapter.Fill(DataSet).)
Public method Supported by the XNA Framework Fill(DataTable) Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataTable name.
Public method Supported by the XNA Framework Fill(DataSet, String) Adds or refreshes rows in the DataSet to match those in the data source using the DataSet and DataTable names.
Protected method Supported by the XNA Framework Fill(DataTable, IDataReader) Adds or refreshes rows in the DataTable to match those in the data source using the DataTable name and the specified IDataReader. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework Fill(DataTable, IDbCommand, CommandBehavior) Adds or refreshes rows in a DataTable to match those in the data source using the specified DataTable, IDbCommand and CommandBehavior.
Public method Supported by the XNA Framework Fill(Int32, Int32, DataTable[]) Adds or refreshes rows in a DataTable to match those in the data source starting at the specified record and retrieving up to the specified maximum number of records.
Public method Supported by the XNA Framework Fill(DataSet, Int32, Int32, String) Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.
Protected method Supported by the XNA Framework Fill(DataTable[], IDataReader, Int32, Int32) Adds or refreshes rows in a specified range in the collection of DataTable objects to match those in the data source. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework Fill(DataSet, String, IDataReader, Int32, Int32) Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework Fill(DataTable[], Int32, Int32, IDbCommand, CommandBehavior) Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.
Protected method Supported by the XNA Framework Fill(DataSet, Int32, Int32, String, IDbCommand, CommandBehavior) Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and source table names, command string, and command behavior.
Public method Supported by the XNA Framework FillSchema(DataSet, SchemaType) Adds a DataTable named "Table" to the specified DataSet and configures the schema to match that in the data source based on the specified SchemaType. (Overrides DataAdapter.FillSchema(DataSet, SchemaType).)
Public method Supported by the XNA Framework FillSchema(DataTable, SchemaType) Configures the schema of the specified DataTable based on the specified SchemaType.
Public method Supported by the XNA Framework FillSchema(DataSet, SchemaType, String) Adds a DataTable to the specified DataSet and configures the schema to match that in the data source based upon the specified SchemaType and DataTable.
Protected method Supported by the XNA Framework FillSchema(DataTable, SchemaType, IDataReader) Adds a DataTable to the specified DataSet. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework FillSchema(DataSet, SchemaType, String, IDataReader) Adds a DataTable to the specified DataSet. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework FillSchema(DataTable, SchemaType, IDbCommand, CommandBehavior) Configures the schema of the specified DataTable based on the specified SchemaType, command string, and CommandBehavior values.
Protected method Supported by the XNA Framework FillSchema(DataSet, SchemaType, IDbCommand, String, CommandBehavior) Adds a DataTable to the specified DataSet and configures the schema to match that in the data source based on the specified SchemaType.
Protected method Supported by the XNA Framework Finalize Releases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection. (Inherited from Component.)
Protected method Supported by the XNA Framework GetBatchedParameter Returns a IDataParameter from one of the commands in the current batch.
Protected method Supported by the XNA Framework GetBatchedRecordsAffected Returns information about an individual update attempt within a larger batched update.
Public method Supported by the XNA Framework GetFillParameters Gets the parameters set by the user when executing an SQL SELECT statement. (Overrides DataAdapter.GetFillParameters().)
Public method Supported by the XNA Framework GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method GetService Returns an object that represents a service provided by the Component or by its Container. (Inherited from Component.)
Public method Supported by the XNA Framework GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Supported by the XNA Framework HasTableMappings Indicates whether a DataTableMappingCollection has been created. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework InitializeBatching Initializes batching for the DbDataAdapter.
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from MarshalByRefObject.)
Protected method Supported by the XNA Framework MemberwiseClone() Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (Inherited from MarshalByRefObject.)
Protected method Supported by the XNA Framework OnFillError Invoked when an error occurs during a Fill. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework OnRowUpdated Raises the RowUpdated event of a .NET Framework data provider.
Protected method Supported by the XNA Framework OnRowUpdating Raises the RowUpdating event of a .NET Framework data provider.
Public method Supported by the XNA Framework ResetFillLoadOption Resets FillLoadOption to its default state and causes DataAdapter.Fill to honor AcceptChangesDuringFill. (Inherited from DataAdapter.)
Public method Supported by the XNA Framework ShouldSerializeAcceptChangesDuringFill Determines whether the AcceptChangesDuringFill property should be persisted. (Inherited from DataAdapter.)
Public method Supported by the XNA Framework ShouldSerializeFillLoadOption Determines whether the FillLoadOption property should be persisted. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework ShouldSerializeTableMappings Determines whether one or more DataTableMapping objects exist and they should be persisted. (Inherited from DataAdapter.)
Protected method Supported by the XNA Framework TerminateBatching Ends batching for the DbDataAdapter.
Public method Supported by the XNA Framework ToString Returns a String containing the name of the Component, if any. This method should not be overridden. (Inherited from Component.)

In XNA Framework 3.0, this member is inherited from Object.ToString().
Public method Supported by the XNA Framework Update(DataRow[]) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of DataRow objects.
Public method Supported by the XNA Framework Update(DataSet) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified DataSet. (Overrides DataAdapter.Update(DataSet).)
Public method Supported by the XNA Framework Update(DataTable) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified DataTable.
Protected method Supported by the XNA Framework Update(DataRow[], DataTableMapping) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of DataRow objects.
Public method Supported by the XNA Framework Update(DataSet, String) Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the DataSet with the specified DataTable name.
Top
  Name Description
Public event Supported by the XNA Framework Disposed Occurs when the component is disposed by a call to the Dispose method. (Inherited from Component.)
Public event Supported by the XNA Framework FillError Returned when an error occurs during a fill operation. (Inherited from DataAdapter.)
Top
  Name Description
Public field Static member Supported by the XNA Framework DefaultSourceTableName The default name used by the DataAdapter object for table mappings.
Top
  Name Description
Explicit interface implemetation Private method Supported by the XNA Framework ICloneable.Clone Creates a new object that is a copy of the current instance.
Explicit interface implemetation Private property Supported by the XNA Framework IDataAdapter.TableMappings Indicates how a source table is mapped to a dataset table. (Inherited from DataAdapter.)
Explicit interface implemetation Private property Supported by the XNA Framework IDbDataAdapter.DeleteCommand Gets or sets an SQL statement for deleting records from the data set.
Explicit interface implemetation Private property Supported by the XNA Framework IDbDataAdapter.InsertCommand Gets or sets an SQL statement used to insert new records into the data source.
Explicit interface implemetation Private property Supported by the XNA Framework IDbDataAdapter.SelectCommand Gets or sets an SQL statement used to select records in the data source.
Explicit interface implemetation Private property Supported by the XNA Framework IDbDataAdapter.UpdateCommand Gets or sets an SQL statement used to update records in the data source.
Top

The DbDataAdapter class inherits from the DataAdapter class and helps a class implement a DataAdapter designed for use with a relational database.

An application does not create an instance of the DbDataAdapter interface directly, but creates an instance of a class that inherits IDbDataAdapter and DbDataAdapter.

Classes that inherit DbDataAdapter must implement the inherited members, and typically define additional members to add provider-specific functionality. For example, the DbDataAdapter class defines the SelectCommand property, and the DbDataAdapter interface defines eight overloads of the Fill method. In turn, the OleDbDataAdapter class inherits the Fill method, and also defines two additional overloads of Fill that take an ADO Recordset object as a parameter.

Notes to Inheritors

When you inherit from the DbDataAdapter class, we recommend that you implement the following constructors:

Item

Description

PrvDataAdapter()

Initializes a new instance of the PrvDataAdapter class.

PrvDataAdapter(PrvCommand selectCommand)

Initializes a new instance of the PrvDataAdapter class with the specified SQL SELECT statement.

PrvDataAdapter(string selectCommandText, string selectConnectionString)

Initializes a new instance of the PrvDataAdapter class with an SQL SELECT statement and a connection string.

PrvDataAdapter(string selectCommandText, PrvConnection selectConnection)

Initializes a new instance of the PrvDataAdapter class with an SQL SELECT statement and a PrvConnection object.

To promote consistency among .NET Framework data providers, you should name the inheriting class in the form PrvDataAdapter, where Prv is the uniform prefix given to all classes in a specific .NET Framework data provider namespace. For example, "Sql" is the prefix of the SqlDataAdapter class in the System.Data.SqlClient namespace.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ