IDTSBuffer100.GetBLOBLength(Int32, Int32, UInt32) 方法

定义

获取 IDTSBuffer100 中的某列包含的字节数。

public:
 void GetBLOBLength(int hRow, int hCol, [Runtime::InteropServices::Out] System::UInt32 % pdwBytes);
public void GetBLOBLength (int hRow, int hCol, out uint pdwBytes);
abstract member GetBLOBLength : int * int * uint32 -> unit
Public Sub GetBLOBLength (hRow As Integer, hCol As Integer, ByRef pdwBytes As UInteger)

参数

hRow
Int32

行的句柄。

hCol
Int32

行中列的句柄。

pdwBytes
UInt32

一个 out 参数,该参数包含行中的字节数。

注解

该方法 GetBLOBLength 用于确定列中包含二进制大型对象 (BLOB) 数据类型的字节数,例如 DT_IMAGE。 此方法通常在调用方法 GetBLOBData 之前调用。 要从 BLOB 检索的第三个参数 GetBLOBData 是要从 BLOB 检索的字节数。 在调用以检索 BLOB 列中的所有字节之前调用 GetBLOBData 此方法。

适用于