PipelineBuffer.SetUInt64(Int32, UInt64) Method

Definition

Important

This API is not CLS-compliant.

Assigns an unsigned 64-bit integer to a buffer column.

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)

Parameters

columnIndex
Int32

The index of the column in the buffer row.

value
UInt64

The value assigned to the buffer column.

Attributes

Remarks

The SetUInt64 method assigns an unsigned 64-bit integer to the buffer column specified by the columnIndex parameter.

This method works with the DT_UI8 data type in Integration Services.

If the value being assigned to the buffer column is not an unsigned 64-bit integer or the DataType of the buffer column is not DT_UI8, an UnsupportedBufferDataTypeException occurs.

For a complete list of Integration Services data types and the corresponding Get and Set methods of the PipelineBuffer class to use with each type, see Working with Data Types in the Data Flow.

Applies to