''OleDbRowUpdatedEventHandler'' ''serializable'

OleDbRowUpdatedEventHandler serializable

System.Data.OleDb (system.data.dll) delegate

This delegate represents the method that will handle the OleDbDataAdapter.RowUpdated event, which fires for each row that is updated (inserted, deleted, or modified) just after the appropriate command is executed, whether it has succeeded or failed. This event gives you the chance to inspect the row and skip over a failed update or cancel processing entirely using the OleDbRowUpdatedEventArgs class.

public delegate void OleDbRowUpdatedEventHandler(object sender, OleDbRowUpdatedEventArgs e);

Associated Events

OleDbDataAdapter.RowUpdated( )



    Part I: ADO.NET Tutorial
    Part II: ADO.NET Core Classes
    Part III: API Quick Reference
    Chapter 34. The System.Data Namespace