次の方法で共有


PipelineBuffer.SetDecimal メソッド

バッファー列に decimal を割り当てます。

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

構文

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

instance.SetDecimal(columnIndex, value)
public void SetDecimal(
    int columnIndex,
    decimal value
)
public:
void SetDecimal(
    int columnIndex, 
    Decimal value
)
member SetDecimal : 
        columnIndex:int * 
        value:decimal -> unit
public function SetDecimal(
    columnIndex : int, 
    value : decimal
)

パラメーター

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

説明

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

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

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

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

関連項目

参照

PipelineBuffer クラス

Microsoft.SqlServer.Dts.Pipeline 名前空間