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



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

Field Value

Returns a TdTimestamp instance that represents a Null value.
Example
This example shows how to send a Null value to a Teradata Vantage Advanced SQL Engine.
TdParameter col1 = new TdParameter();
col1.TdType = TdType.Timestamp;
col1.Value = TdTimestamp.Null;
Remarks
Conceptually it is the constructor for Null TdTimestamp instances.
Requirements

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

See Also

Reference

TdTimestamp Structure
TdTimestamp Members