DB2®DataAdapter.OnRowUpdating Method

Raises the RowUpdating event using a RowUpdatingEventArgs object, whether or not the update operation is successful.

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Overrides Protected Sub OnRowUpdating( _
   ByVal value As RowUpdatingEventArgs _
)
[C#]
protected override void OnRowUpdating(
   RowUpdatingEventArgs value
);
[C++]
protected: void OnRowUpdating(
   RowUpdatingEventArgs* value
);
[JScript]
protected override function OnRowUpdating(
   value : RowUpdatingEventArgs
);

Parameters

value
A System.Data.Common.RowUpdatingEventArgs object that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate.

Notes to inheritors: When overriding OnRowUpdating in a derived class, be sure to call the OnRowUpdating method of the base class.