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

定义

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

注解

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

适用于