IDTSBuffer100.SetData(Int32, Int32, DTP_VARIANT) Method

Definition

Assigns data to a column in an IDTSBuffer100.

public:
 void SetData(int hRow, int hCol, Microsoft::SqlServer::Dts::Runtime::Wrapper::DTP_VARIANT % pData);
public void SetData (int hRow, int hCol, ref Microsoft.SqlServer.Dts.Runtime.Wrapper.DTP_VARIANT pData);
abstract member SetData : int * int * DTP_VARIANT -> unit
Public Sub SetData (hRow As Integer, hCol As Integer, ByRef pData As DTP_VARIANT)

Parameters

hRow
Int32

The handle of the row.

hCol
Int32

The handle of the column.

pData
DTP_VARIANT

The DTP_VARIANT data assigned to the column.

Remarks

This method is used to assign data to the specified column in the IDTSBuffer100. Managed component developers do not use this method, but instead use the methods of the managed PipelineBuffer class.

Applies to