IDTSBuffer100.AddBLOBData(Int32, Int32, Byte, UInt32) 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.
Appends byte data to a column in an IDTSBuffer100.
public:
void AddBLOBData(int hRow, int hCol, System::Byte % lpData, System::UInt32 dwLength);
public void AddBLOBData (int hRow, int hCol, ref byte lpData, uint dwLength);
abstract member AddBLOBData : int * int * byte * uint32 -> unit
Public Sub AddBLOBData (hRow As Integer, hCol As Integer, ByRef lpData As Byte, dwLength As UInteger)
Parameters
- hRow
- Int32
The row handle.
- hCol
- Int32
The column handle.
- lpData
- Byte
A pointer to the bytes that are written to the column.
- dwLength
- UInt32
The number of bytes to write.
Remarks
This method is used to append an array of bytes to the column specified by the hCol
parameter.