MySqlDataAdapter Members

MySQL Connector/Net

The MySqlDataAdapter type exposes the following members.

Constructors

  NameDescription
MySqlDataAdapterOverloaded.

Methods

  NameDescription
AddToBatch
Adds a IDbCommand to the current batch.
(Inherited from DbDataAdapter.)
ClearBatch
Removes all IDbCommand objects from the batch.
(Inherited from DbDataAdapter.)
CloneInternals Obsolete.
Creates a copy of this instance of DataAdapter.
(Inherited from DataAdapter.)
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.)
CreateRowUpdatedEvent
Initializes a new instance of the RowUpdatedEventArgs class.
(Inherited from DbDataAdapter.)
CreateRowUpdatingEvent
Initializes a new instance of the RowUpdatingEventArgs class.
(Inherited from DbDataAdapter.)
CreateTableMappings (Inherited from DataAdapter.)
DisposeOverloaded.
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
ExecuteBatch
Executes the current batch.
(Inherited from DbDataAdapter.)
FillOverloaded.
FillSchemaOverloaded.
Finalize
Releases unmanaged resources and performs other cleanup operations before the Component is reclaimed by garbage collection.
(Inherited from Component.)
GetBatchedParameter
Returns a IDataParameter from one of the commands in the current batch.
(Inherited from DbDataAdapter.)
GetBatchedRecordsAffected
Returns information about an individual update attempt within a larger batched update.
(Inherited from DbDataAdapter.)
GetFillParameters
Gets the parameters set by the user when executing an SQL SELECT statement.
(Inherited from DbDataAdapter.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
GetService
Returns an object that represents a service provided by the Component or by its Container.
(Inherited from Component.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
HasTableMappings
Indicates whether a DataTableMappingCollection has been created.
(Inherited from DataAdapter.)
InitializeBatching
Initializes batching for the DbDataAdapter.
(Inherited from DbDataAdapter.)
InitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
MemberwiseCloneOverloaded.
OnFillError
Invoked when an error occurs during a Fill.
(Inherited from DataAdapter.)
OnRowUpdated
Raises the RowUpdated event of a .NET Framework data provider.
(Inherited from DbDataAdapter.)
OnRowUpdating
Raises the RowUpdating event of a .NET Framework data provider.
(Inherited from DbDataAdapter.)
ResetFillLoadOption
Resets FillLoadOption to its default state and causes Fill(DataSet) to honor AcceptChangesDuringFill.
(Inherited from DataAdapter.)
ShouldSerializeAcceptChangesDuringFill
Determines whether the AcceptChangesDuringFill property should be persisted.
(Inherited from DataAdapter.)
ShouldSerializeFillLoadOption
Determines whether the FillLoadOption property should be persisted.
(Inherited from DataAdapter.)
ShouldSerializeTableMappings
Determines whether one or more DataTableMapping objects exist and they should be persisted.
(Inherited from DataAdapter.)
TerminateBatching
Ends batching for the DbDataAdapter.
(Inherited from DbDataAdapter.)
ToString
Returns a String containing the name of the Component, if any. This method should not be overridden.
(Inherited from Component.)
UpdateOverloaded.

Properties

  NameDescription
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.)
AcceptChangesDuringUpdate
Gets or sets whether AcceptChanges()()() is called during a Update(DataSet).
(Inherited from DataAdapter.)
CanRaiseEvents
Gets a value indicating whether the component can raise an event.
(Inherited from Component.)
Container
Gets the IContainer that contains the Component.
(Inherited from Component.)
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.)
DeleteCommand
Gets or sets a SQL statement or stored procedure used to delete records from the data set.
DesignMode
Gets a value that indicates whether the Component is currently in design mode.
(Inherited from Component.)
Events
Gets the list of event handlers that are attached to this Component.
(Inherited from Component.)
FillCommandBehavior
Gets or sets the behavior of the command used to fill the data adapter.
(Inherited from DbDataAdapter.)
FillLoadOption
Gets or sets the LoadOption that determines how the adapter fills the DataTable from the DbDataReader.
(Inherited from DataAdapter.)
InsertCommand
Gets or sets a SQL statement or stored procedure used to insert records into the data set.
MissingMappingAction
Determines the action to take when incoming data does not have a matching table or column.
(Inherited from DataAdapter.)
MissingSchemaAction
Determines the action to take when existing DataSet schema does not match incoming data.
(Inherited from DataAdapter.)
ReturnProviderSpecificTypes
Gets or sets whether the Fill method should return provider-specific values or common CLS-compliant values.
(Inherited from DataAdapter.)
SelectCommand
Gets or sets a SQL statement or stored procedure used to select records in the data source.
Site
Gets or sets the ISite of the Component.
(Inherited from Component.)
TableMappings
Gets a collection that provides the master mapping between a source table and a DataTable.
(Inherited from DataAdapter.)
UpdateBatchSize (Overrides DbDataAdapter..::.UpdateBatchSize.)
UpdateCommand
Gets or sets a SQL statement or stored procedure used to updated records in the data source.

Events

  NameDescription
Disposed
Occurs when the component is disposed by a call to the Dispose()()() method.
(Inherited from Component.)
FillError
Returned when an error occurs during a fill operation.
(Inherited from DataAdapter.)
RowUpdated
Occurs during Update after a command is executed against the data source. The attempt to update is made, so the event fires.
RowUpdating
Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires.

See Also