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

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

See Also

Reference

TdDecimal Structure
TdDecimal Members