IDTSBuffer100.GetBLOBData(Int32, Int32, UInt32, Byte, UInt32, UInt32) Método

Definición

public:
 void GetBLOBData(int hRow, int hCol, System::UInt32 dwOffset, System::Byte % lpPointer, System::UInt32 dwLength, [Runtime::InteropServices::Out] System::UInt32 % lpdwWritten);
public void GetBLOBData(int hRow, int hCol, uint dwOffset, ref byte lpPointer, uint dwLength, out uint lpdwWritten);
abstract member GetBLOBData : int * int * uint32 * byte * uint32 * uint32 -> unit
Public Sub GetBLOBData (hRow As Integer, hCol As Integer, dwOffset As UInteger, ByRef lpPointer As Byte, dwLength As UInteger, ByRef lpdwWritten As UInteger)

Parámetros

hRow
Int32
hCol
Int32
dwOffset
UInt32
lpPointer
Byte
dwLength
UInt32
lpdwWritten
UInt32

Comentarios

Al recuperar datos de una columna que contiene un BLOB, como un DT_IMAGE, especifica la ubicación inicial en el BLOB con el dwOffset parámetro y el número de bytes a recuperar en dicho dwLength parámetro. Se recomienda recuperar los datos de una columna BLOB en secciones para evitar situaciones que puedan ocurrir si el tamaño de los datos en el BLOB es mayor que la memoria disponible en el ordenador.

Este método se utiliza para recuperar una sección de bytes de la columna especificada por el hCol parámetro en el IDTSBuffer100. Este método se utiliza típicamente de forma recursiva al leer secuencialmente secciones BLOB.

Se aplica a