IDTSBuffer100::SetBLOBFromStream Method (Int32, Int32, ISequentialStream^)

 

Assigns data to a binary large object (BLOB) column from a sequential stream.

Namespace:   Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

void SetBLOBFromStream(
	int hRow,
	int hCol,
	ISequentialStream^ pIStream
)

Parameters

hRow
Type: System::Int32

The row handle.

hCol
Type: System::Int32

The column handle.

pIStream
Type: Microsoft.SqlServer.Dts.Runtime.Wrapper::ISequentialStream^

The ISequentialStream interface pointer.

This method adds all the data from the provided ISequentialStream object to the column specified by the hCol parameter. If the column contains data, it is reset before the data from the stream is written to the column.

Return to top
Show: