Send feedback on this topic.
Teradata.Client.Provider
TdRowUpdatedEventArgs Constructor



Teradata.Client.Provider Namespace > TdRowUpdatedEventArgs Class : TdRowUpdatedEventArgs Constructor
A System.Data.DataRow that is targeted for an update via a call to TdDataAdapter.Update.
A command executed to reconcile DataRow changes back to the Advanced SQL Engine
Specifies the SQL statement type (e.g. UPDATE, INSERT or DELETE).
Show how DataRow columns are mapped to Teradata database columns.
Initialize a new instance of the TdRowUpdatedEventArgs class.
Syntax
'Declaration
 
Public Function New( _
   ByVal dataRow As DataRow, _
   ByVal command As TdCommand, _
   ByVal statementType As StatementType, _
   ByVal tableMapping As DataTableMapping _
)
'Usage
 
Dim dataRow As DataRow
Dim command As TdCommand
Dim statementType As StatementType
Dim tableMapping As DataTableMapping
 
Dim instance As New TdRowUpdatedEventArgs(dataRow, command, statementType, tableMapping)
public TdRowUpdatedEventArgs( 
   DataRow dataRow,
   TdCommand command,
   StatementType statementType,
   DataTableMapping tableMapping
)
public:
TdRowUpdatedEventArgs( 
   DataRow^ dataRow,
   TdCommand^ command,
   StatementType statementType,
   DataTableMapping^ tableMapping
)

Parameters

dataRow
A System.Data.DataRow that is targeted for an update via a call to TdDataAdapter.Update.
command
A command executed to reconcile DataRow changes back to the Advanced SQL Engine
statementType
Specifies the SQL statement type (e.g. UPDATE, INSERT or DELETE).
tableMapping
Show how DataRow columns are mapped to Teradata database columns.
Remarks
The command parameter is defined as an instance of IDbCommand interface. But please note that the Command property returns a TdCommand object. This simply means that command /// parameter object should be a TdCommand instance which also supports IDbCommand interface.
Requirements

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

See Also

Reference

TdRowUpdatedEventArgs Class
TdRowUpdatedEventArgs Members