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 该方法之前调用。 第三 GetBLOBData 个参数是从BLOB中检索的字节数。 你在调用 GetBLOBData BLOB列中的所有字节之前,先调用这个方法。

适用于