Send feedback on this topic.
Teradata.Client.Provider
UpdatedRowSource Property



Teradata.Client.Provider Namespace > TdCommand Class : UpdatedRowSource Property
Gets or sets how command results are applied to the DataRow when used by the Update method of the TdDataAdapter.
Syntax
'Declaration
 
Public Overrides NotOverridable Property UpdatedRowSource As UpdateRowSource
'Usage
 
Dim instance As TdCommand
Dim value As UpdateRowSource
 
instance.UpdatedRowSource = value
 
value = instance.UpdatedRowSource
public override UpdateRowSource UpdatedRowSource {get; set;}
public:
property UpdateRowSource UpdatedRowSource {
   UpdateRowSource get() override;
   void set (    UpdateRowSource value) override;
}

Property Value

One of the System.Data.UpdateRowSource enumeration values. The default value is System.Data.UpdateRowSource.OutputParameters.
Exceptions
ExceptionDescription
Valid values are None and Output Parameters.
The TdCommand is closed / disposed.
Remarks
Teradata Stored Procedures only return output parameters (No result set or return values). Therefore, output parameters can be mapped back to the DataTable within a DataSet.
Requirements

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

See Also

Reference

TdCommand Class
TdCommand Members