PipelineBuffer.SetUInt64(Int32, UInt64) 方法

定义

重要

此 API 不符合 CLS。

将 64 位无符号整数赋给缓冲区列。

public:
 void SetUInt64(int columnIndex, System::UInt64 value);
[System.CLSCompliant(false)]
public void SetUInt64 (int columnIndex, ulong value);
[<System.CLSCompliant(false)>]
member this.SetUInt64 : int * uint64 -> unit
Public Sub SetUInt64 (columnIndex As Integer, value As ULong)

参数

columnIndex
Int32

缓冲区行中列的索引。

value
UInt64

赋给缓冲区列的值。

属性

注解

该方法 SetUInt64 将无符号 64 位整数分配给参数指定的 columnIndex 缓冲区列。

此方法适用于 DT_UI8 Integration Services 中的数据类型。

如果分配给缓冲区列的值不是无符号 64 位整数,或者DataType缓冲区列不是DT_UI8,则会发生。UnsupportedBufferDataTypeException

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

适用于