MySqlRowUpdatedEventArgs Constructor

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Initializes a new instance of the MySqlRowUpdatedEventArgs class.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public MySqlRowUpdatedEventArgs(
	DataRow row,
	IDbCommand command,
	StatementType statementType,
	DataTableMapping tableMapping
)
Visual Basic
Public Sub New ( _
	row As DataRow, _
	command As IDbCommand, _
	statementType As StatementType, _
	tableMapping As DataTableMapping _
)
Visual C++
public:
MySqlRowUpdatedEventArgs(
	DataRow^ row, 
	IDbCommand^ command, 
	StatementType statementType, 
	DataTableMapping^ tableMapping
)

Parameters

row
Type: System.Data..::..DataRow
The DataRow sent through an Update(DataSet).
command
Type: System.Data..::..IDbCommand
The IDbCommand executed when Update(DataSet) is called.
statementType
Type: System.Data..::..StatementType
One of the StatementType values that specifies the type of query executed.
tableMapping
Type: System.Data.Common..::..DataTableMapping
The DataTableMapping sent through an Update(DataSet).

See Also