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
パラメーター
- columnIndex
型: System. . :: . .Int32
バッファ行の列のインデックス。
戻り値
型: System. . :: . .UInt64
バッファ列に格納されている ulong 値。
説明
このメソッドは、Integration Services の DT_UI8 データ型に有効です。
バッファ列 DataType が DT_UI8 ではない場合、PipelineBuffer は UnsupportedBufferDataTypeException を生成します。
列の値が null の場合、PipelineBuffer は ColumnIsNullException を生成します。null かどうかは、最初に IsNull メソッドを呼び出して確認できます。
Integration Services のデータ型と、それぞれのデータ型に対して使用する、PipelineBuffer クラスの対応する Get メソッドおよび Set メソッドの一覧については、「データ フロー内のデータ型の処理」を参照してください。