DekGenius.com
[ Team LiB ] Previous Section Next Section

OleDbRowUpdatingEventHandler serializable

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

This delegate represents the method that handles the OleDbDataAdapter.RowUpdating event, which fires for each row that's updated (inserted, deleted, or modified), just before the appropriate command is executed. This event lets you inspect the row and skip or cancel processing using the OleDbRowUpdatingEventArgs class.

public delegate void OleDbRowUpdatingEventHandler(object sender, OleDbRowUpdatingEventArgs e);

Associated Events

OleDbDataAdapter.RowUpdating( )

    [ Team LiB ] Previous Section Next Section