MySqlRowUpdatingEventArgs Class

MySQL Connector/Net

MySqlRowUpdatingEventArgs Class
Provides data for the RowUpdating event. This class cannot be inherited.
Inheritance Hierarchy
SystemObject  SystemEventArgs
    System.Data.CommonRowUpdatingEventArgs
      MySql.Data.MySqlClientMySqlRowUpdatingEventArgs

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public sealed class MySqlRowUpdatingEventArgs : RowUpdatingEventArgs
Public NotInheritable Class MySqlRowUpdatingEventArgs
	Inherits RowUpdatingEventArgs
public ref class MySqlRowUpdatingEventArgs sealed : public RowUpdatingEventArgs
[<SealedAttribute>]
type MySqlRowUpdatingEventArgs =  
    class
        inherit RowUpdatingEventArgs
    end

The MySqlRowUpdatingEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodMySqlRowUpdatingEventArgs
Initializes a new instance of the MySqlRowUpdatingEventArgs class.
Top
Properties
  NameDescription
Protected propertyBaseCommand
Gets or sets the IDbCommand object for an instance of this class.
(Inherited from RowUpdatingEventArgs.)
Public propertyCommand
Gets or sets the MySqlCommand to execute when performing the Update.
Public propertyErrors
Gets any errors generated by the .NET Framework data provider when the Command executes.
(Inherited from RowUpdatingEventArgs.)
Public propertyRow
Gets the DataRow that will be sent to the server as part of an insert, update, or delete operation.
(Inherited from RowUpdatingEventArgs.)
Public propertyStatementType
Gets the type of SQL statement to execute.
(Inherited from RowUpdatingEventArgs.)
Public propertyStatus
Gets or sets the UpdateStatus of the Command property.
(Inherited from RowUpdatingEventArgs.)
Public propertyTableMapping
Gets the DataTableMapping to send through the Update(DataSet).
(Inherited from RowUpdatingEventArgs.)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also