PipelineBuffer.GetString(Int32) 方法

定义

获取存储在缓冲区列中的字符串。

public:
 System::String ^ GetString(int columnIndex);
public string GetString (int columnIndex);
member this.GetString : int -> string
Public Function GetString (columnIndex As Integer) As String

参数

columnIndex
Int32

缓冲区行中列的索引。

返回

存储在缓冲区列中的 String 值。

注解

此方法适用于以下 Integration Services 数据类型:

如果分配给缓冲区列的值不是字符串,或者缓冲区列DataType不是 、DT_STRDT_WSTRDT_TEXTDT_NTEXT发生。UnsupportedBufferDataTypeException

如果列的值为 null,则 PipelineBuffer 生成一个 ColumnIsNullException。 可以通过调用 IsNull 该方法来检查 null。

有关 Integration Services 数据类型的完整列表以及用于每种类型的类的相应GetSet方法PipelineBuffer,请参阅数据流中的“处理数据类型”。

适用于