次の方法で共有


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

パラメーター

戻り値

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

説明

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

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

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

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