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



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

Field Value

Returns a TdTime 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.Time;
col1.Value = TdTime.Null;
Remarks
Conceptually it is the constructor for Null TdTime instances.
Requirements

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

See Also

Reference

TdTime Structure
TdTime Members