MySqlRowUpdatedEventArgs Constructor

MySQL Connector/Net

MySqlRowUpdatedEventArgs Constructor
Initializes a new instance of the MySqlRowUpdatedEventArgs class.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public MySqlRowUpdatedEventArgs(
	DataRow row,
	IDbCommand command,
	StatementType statementType,
	DataTableMapping tableMapping
)
Public Sub New ( 
	row As DataRow,
	command As IDbCommand,
	statementType As StatementType,
	tableMapping As DataTableMapping
)
public:
MySqlRowUpdatedEventArgs(
	DataRow^ row, 
	IDbCommand^ command, 
	StatementType statementType, 
	DataTableMapping^ tableMapping
)
new : 
        row : DataRow * 
        command : IDbCommand * 
        statementType : StatementType * 
        tableMapping : DataTableMapping -> MySqlRowUpdatedEventArgs

Parameters

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