DekGenius.com
[ Team LiB ] Previous Section Next Section

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( )

    [ Team LiB ] Previous Section Next Section