Send feedback on this topic.
Teradata.Client.Provider
Null Field (TdDecimal)
Example 



Teradata.Client.Provider Namespace > TdDecimal Structure : Null Field
Gets a Null TdDecimal instance.
Syntax
'Declaration
 
Public Shared ReadOnly Null As TdDecimal
'Usage
 
Dim value As TdDecimal
 
value = TdDecimal.Null
public static readonly TdDecimal Null
public:
static readonly TdDecimal Null

Field Value

Returns a TdDecimal instance that represents a Null value.
Example
This example shows how to send a Null value to the Advanced SQL Engine.
TdParameter colX = new TdParameter();
colX.TdType = TdType.Decimal;
colX.Value = TdDecimal.Null;
Remarks
Conceptually it is the constructor for Null TdDecimal instances.
Requirements
ProductVersionsPlatforms
.NET6, 7Windows, Linux, MacOS
.NET Framework4.6.2, 4.7, 4.7.1, 4.7.2, 4.8Windows
.NET Standard2.0Windows, Linux, MacOS
See Also

Reference

TdDecimal Structure
TdDecimal Members