RowUpdated Event

MySQL Connector/Net

Occurs during Update after 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 MySqlRowUpdatedEventHandler RowUpdated
Visual Basic (Declaration)
Public Event RowUpdated As MySqlRowUpdatedEventHandler
Visual C++
public:
 event MySqlRowUpdatedEventHandler^ RowUpdated {
	void add (MySqlRowUpdatedEventHandler^ value);
	void remove (MySqlRowUpdatedEventHandler^ value);
}

See Also