次の方法で共有


PipelineBuffer.GetString メソッド

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

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

構文

'宣言
Public Function GetString ( _
    columnIndex As Integer _
) As String
'使用
Dim instance As PipelineBuffer 
Dim columnIndex As Integer 
Dim returnValue As String 

returnValue = instance.GetString(columnIndex)
public string GetString(
    int columnIndex
)
public:
String^ GetString(
    int columnIndex
)
member GetString : 
        columnIndex:int -> string
public function GetString(
    columnIndex : int
) : String

パラメーター

  • columnIndex
    型: System.Int32
    バッファー行の列のインデックス。

戻り値

型: System.String
バッファー列に格納されている string。

説明

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

バッファー列に割り当てられている値が文字列ではないか、またはバッファー列 DataTypeDT_STRDT_WSTRDT_TEXT、または DT_NTEXT ではない場合、UnsupportedBufferDataTypeException が発生します。

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

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

関連項目

参照

PipelineBuffer クラス

Microsoft.SqlServer.Dts.Pipeline 名前空間