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



Teradata.Client.Provider Namespace > TdParameter Class : Offset Property
Gets or sets the index within the Value property where the read operation is to begin. Usually used with BLOB and or CLOB.
Syntax
'Declaration
 
Public Property Offset As Integer
'Usage
 
Dim instance As TdParameter
Dim value As Integer
 
instance.Offset = value
 
value = instance.Offset
public int Offset {get; set;}
public:
property int Offset {
   int get();
   void set (    int value);
}

Property Value

Offset into the Value property. The default is 0.
Remarks
Offset is the index into the Value property where the read operation is to begin. It applies only to input parameters of variable length values such as: Byte[], Char[], String, Stream or TextReader.

For Stream and TextReader the offset is relative to the current position. Otherwise it is relative to the start of the value.

Requirements

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

See Also

Reference

TdParameter Class
TdParameter Members