MySqlDataAdapter.CreateRowUpdatingEvent Method

MySQL Connector/Net

MySqlDataAdapterCreateRowUpdatingEvent Method

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
protected override RowUpdatingEventArgs CreateRowUpdatingEvent(
	DataRow dataRow,
	IDbCommand command,
	StatementType statementType,
	DataTableMapping tableMapping
)
Protected Overrides Function CreateRowUpdatingEvent ( 
	dataRow As DataRow,
	command As IDbCommand,
	statementType As StatementType,
	tableMapping As DataTableMapping
) As RowUpdatingEventArgs
protected:
virtual RowUpdatingEventArgs^ CreateRowUpdatingEvent(
	DataRow^ dataRow, 
	IDbCommand^ command, 
	StatementType statementType, 
	DataTableMapping^ tableMapping
) override
abstract CreateRowUpdatingEvent : 
        dataRow : DataRow * 
        command : IDbCommand * 
        statementType : StatementType * 
        tableMapping : DataTableMapping -> RowUpdatingEventArgs 
override CreateRowUpdatingEvent : 
        dataRow : DataRow * 
        command : IDbCommand * 
        statementType : StatementType * 
        tableMapping : DataTableMapping -> RowUpdatingEventArgs 

Parameters

dataRow
Type: System.DataDataRow
command
Type: System.DataIDbCommand
statementType
Type: System.DataStatementType
tableMapping
Type: System.Data.CommonDataTableMapping

Return Value

Type: RowUpdatingEventArgs
See Also