PipelineBuffer.SetInt64 メソッド

バッファー列に 64 ビットの符号付き整数を割り当てます。

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

構文

'宣言
Public Sub SetInt64 ( _
    columnIndex As Integer, _
    value As Long _
)
'使用
Dim instance As PipelineBuffer 
Dim columnIndex As Integer 
Dim value As Long

instance.SetInt64(columnIndex, value)
public void SetInt64(
    int columnIndex,
    long value
)
public:
void SetInt64(
    int columnIndex, 
    long long value
)
member SetInt64 : 
        columnIndex:int * 
        value:int64 -> unit
public function SetInt64(
    columnIndex : int, 
    value : long
)

パラメーター

  • columnIndex
    型: System.Int32
    バッファー行の列のインデックスです。
  • value
    型: System.Int64
    バッファー列に割り当てられた値です。

説明

SetInt64 メソッドは、columnIndex パラメーターで指定されたバッファー列に long を割り当てます。

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

バッファー列に割り当てられている値が long ではないか、または列のデータ型が DT_I8 ではない場合、UnsupportedBufferDataTypeException が発生します。

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

関連項目

参照

PipelineBuffer クラス

Microsoft.SqlServer.Dts.Pipeline 名前空間