OleDbRowUpdatedEventArgs Constructor

Definition

Initializes a new instance of the OleDbRowUpdatedEventArgs class.

public:
 OleDbRowUpdatedEventArgs(System::Data::DataRow ^ dataRow, System::Data::IDbCommand ^ command, System::Data::StatementType statementType, System::Data::Common::DataTableMapping ^ tableMapping);
public OleDbRowUpdatedEventArgs (System.Data.DataRow dataRow, System.Data.IDbCommand command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping);
public OleDbRowUpdatedEventArgs (System.Data.DataRow dataRow, System.Data.IDbCommand? command, System.Data.StatementType statementType, System.Data.Common.DataTableMapping tableMapping);
new System.Data.OleDb.OleDbRowUpdatedEventArgs : System.Data.DataRow * System.Data.IDbCommand * System.Data.StatementType * System.Data.Common.DataTableMapping -> System.Data.OleDb.OleDbRowUpdatedEventArgs
Public Sub New (dataRow As DataRow, command As IDbCommand, statementType As StatementType, tableMapping As DataTableMapping)

Parameters

dataRow
DataRow

The DataRow sent through an Update(DataSet).

command
IDbCommand

The IDbCommand executed when Update(DataSet) is called.

statementType
StatementType

One of the StatementType values that specifies the type of query executed.

tableMapping
DataTableMapping

The DataTableMapping sent through an Update(DataSet).

Applies to