RowUpdating Event

MySQL Connector/Net

Occurs during Update before a command is executed against the data source. The attempt to update is made, so the event fires.

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

Syntax

C#
public event MySqlRowUpdatingEventHandler RowUpdating
Visual Basic (Declaration)
Public Event RowUpdating As MySqlRowUpdatingEventHandler
Visual C++
public:
 event MySqlRowUpdatingEventHandler^ RowUpdating {
	void add (MySqlRowUpdatingEventHandler^ value);
	void remove (MySqlRowUpdatingEventHandler^ value);
}

See Also