次の方法で共有


GetUInt64 メソッド

バッファ列に格納されている ulong 値を取得します。

この API は、CLS に準拠していません。 

名前空間:  Microsoft.SqlServer.Dts.Pipeline
アセンブリ:  Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)

構文

'宣言
<CLSCompliantAttribute(False)> _
Public Function GetUInt64 ( _
    columnIndex As Integer _
) As ULong
'使用
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim returnValue As ULong

returnValue = instance.GetUInt64(columnIndex)
[CLSCompliantAttribute(false)]
public ulong GetUInt64(
    int columnIndex
)
[CLSCompliantAttribute(false)]
public:
unsigned long long GetUInt64(
    int columnIndex
)
[<CLSCompliantAttribute(false)>]
member GetUInt64 : 
        columnIndex:int -> uint64 
public function GetUInt64(
    columnIndex : int
) : ulong

パラメーター

戻り値

型: System. . :: . .UInt64
バッファ列に格納されている ulong 値。

説明

このメソッドは、Integration Services の DT_UI8 データ型に有効です。

バッファ列 DataTypeDT_UI8 ではない場合、PipelineBufferUnsupportedBufferDataTypeException を生成します。

列の値が null の場合、PipelineBufferColumnIsNullException を生成します。null かどうかは、最初に IsNull メソッドを呼び出して確認できます。

Integration Services のデータ型と、それぞれのデータ型に対して使用する、PipelineBuffer クラスの対応する Get メソッドおよび Set メソッドの一覧については、「データ フロー内のデータ型の処理」を参照してください。