IDTSBuffer100.SetBLOBFromStream(Int32, Int32, ISequentialStream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Assigns data to a binary large object (BLOB) column from a sequential stream.
public:
void SetBLOBFromStream(int hRow, int hCol, Microsoft::SqlServer::Dts::Runtime::Wrapper::ISequentialStream ^ pIStream);
public void SetBLOBFromStream (int hRow, int hCol, Microsoft.SqlServer.Dts.Runtime.Wrapper.ISequentialStream pIStream);
abstract member SetBLOBFromStream : int * int * Microsoft.SqlServer.Dts.Runtime.Wrapper.ISequentialStream -> unit
Public Sub SetBLOBFromStream (hRow As Integer, hCol As Integer, pIStream As ISequentialStream)
Parameters
- hRow
- Int32
The row handle.
- hCol
- Int32
The column handle.
- pIStream
- ISequentialStream
The ISequentialStream interface pointer.
Remarks
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.