次の方法で共有


PipelineBuffer.SetDouble メソッド

PipelineBuffer 列に double を割り当てます。

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

構文

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

instance.SetDouble(columnIndex, value)
public void SetDouble(
    int columnIndex,
    double value
)
public:
void SetDouble(
    int columnIndex, 
    double value
)
member SetDouble : 
        columnIndex:int * 
        value:float -> unit
public function SetDouble(
    columnIndex : int, 
    value : double
)

パラメーター

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

説明

SetDouble メソッドは、columnIndex パラメーターで指定されたバッファー列に 64 ビット浮動小数点数 double を割り当てます。

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

バッファー列の DataTypeDT_R8 ではない場合、UnsupportedBufferDataTypeException が発生します。

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

関連項目

参照

PipelineBuffer クラス

Microsoft.SqlServer.Dts.Pipeline 名前空間