Class MySqlRowUpdatedEventArgs
Provides data for the RowUpdated event. This class cannot be inherited.
Inheritance
System.Object
System.EventArgs
System.Data.Common.RowUpdatedEventArgs
MySqlRowUpdatedEventArgs
Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data.dll
Version: 9.1.0
Syntax
public sealed class MySqlRowUpdatedEventArgs : RowUpdatedEventArgs
Constructors
MySqlRowUpdatedEventArgs(DataRow, IDbCommand, StatementType, DataTableMapping)
Initializes a new instance of the MySqlRowUpdatedEventArgs class.
Declaration
public MySqlRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
Parameters
Type | Name | Description |
---|---|---|
System.Data.DataRow | row | The System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet). |
System.Data.IDbCommand | command | The System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called. |
System.Data.StatementType | statementType | One of the System.Data.StatementType values that specifies the type of query executed. |
System.Data.Common.DataTableMapping | tableMapping | The System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet). |
Properties
Command
Gets or sets the MySqlCommand executed when Update is called.
Declaration
public MySqlCommand Command { get; }
Property Value
Type | Description |
---|---|
MySqlCommand |