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



Teradata.Client.Provider Namespace > TdParameter Class : ParameterName Property
Gets or sets the name of the TdParameter object.
Syntax
'Declaration
 
Public Overrides NotOverridable Property ParameterName As String
'Usage
 
Dim instance As TdParameter
Dim value As String
 
instance.ParameterName = value
 
value = instance.ParameterName
public override string ParameterName {get; set;}
public:
property String^ ParameterName {
   String^ get() override;
   void set (    String^ value) override;
}

Property Value

The name of the TdParameter object. The default is an empty string.
Remarks

TdParameterCollection class uses the TdParameter.ParameterName as an indexer. Furthermore, ParameterName is used in Teradata Stored Procedure CALL statement generation. The data provider generates a CALL SQL statement when the TdCommand.CommandType is set to StoredProcedure. The CALL statement requires output parameter names. For additional information see Teradata Manipulation Statements manual.

The Advanced SQL Engine does not support named parameters. Therefore, the position of parameters within the TdParameterCollection dictates the order in which parameters are sent to Teradata.

Requirements
ProductVersionsPlatforms
.NET2.1, 3.1, 6Windows, Linux, MacOS
.NET Framework4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdParameter Class
TdParameter Members