Send feedback on this topic.
Teradata.Client.Provider
TdRowUpdatedEventHandler Delegate



Teradata.Client.Provider Namespace : TdRowUpdatedEventHandler Delegate
The source of the event. In this case an instance of TdDataAdatper class.
An instance of TdRowUpdatedEventArgs class.
Delegate that will handle the TdDataAdapter.RowUpdated event.
Syntax
'Declaration
 
Public Delegate Sub TdRowUpdatedEventHandler( _
   ByVal sender As Object, _
   ByVal e As TdRowUpdatedEventArgs _
) 
'Usage
 
Dim instance As New TdRowUpdatedEventHandler(AddressOf HandlerMethod)
public delegate void TdRowUpdatedEventHandler( 
   object sender,
   TdRowUpdatedEventArgs e
)
public delegate void TdRowUpdatedEventHandler( 
   Object^ sender,
   TdRowUpdatedEventArgs^ e
)

Parameters

sender
The source of the event. In this case an instance of TdDataAdatper class.
e
An instance of TdRowUpdatedEventArgs class.
Remarks

By the time the RowUpdated event is raised, the changes to a DataRow have been applied to the Advanced SQL Engine. Therefore you cannot affect the current DataRow update, but you can affect the reconciliation of the remaining DataRows. If TdDataAdapter.ContinueUpdateOnError is set to true, then any updates to e.Errors and or e.Status are applied to the DataRow and the TdDataAdapter.Update operation continues. However, if TdDataAdapter.ContinueUpdateOnError is set to false, TdDataAdapter.Update generates an exception and the remaining DataRows are not reconciled back to the Advanced SQL Engine.

Requirements

Target Platforms: Windows 8.1, Windows 10, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019

See Also

Reference

TdRowUpdatedEventHandler Members
Teradata.Client.Provider Namespace