GetBLOBLength メソッド
IDTSBuffer100 の列に含まれるバイト数を取得します。
名前空間: Microsoft.SqlServer.Dts.Pipeline.Wrapper
アセンブリ: Microsoft.SqlServer.DTSPipelineWrap (Microsoft.SqlServer.DTSPipelineWrap.dll)
構文
'宣言
Sub GetBLOBLength ( _
hRow As Integer, _
hCol As Integer, _
<OutAttribute> ByRef pdwBytes As UInteger _
)
'使用
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim hCol As Integer
Dim pdwBytes As UInteger
instance.GetBLOBLength(hRow, hCol, pdwBytes)
void GetBLOBLength(
int hRow,
int hCol,
out uint pdwBytes
)
void GetBLOBLength(
[InAttribute] int hRow,
[InAttribute] int hCol,
[OutAttribute] unsigned int% pdwBytes
)
abstract GetBLOBLength :
hRow:int *
hCol:int *
pdwBytes:uint32 byref -> unit
function GetBLOBLength(
hRow : int,
hCol : int,
pdwBytes : uint
)
パラメーター
- hRow
型: System. . :: . .Int32
行のハンドルです。
- hCol
型: System. . :: . .Int32
行内の列のハンドルです。
- pdwBytes
型: System. . :: . .UInt32%
行のバイト数を含む out パラメータです。
説明
GetBLOBLength メソッドは、DT_IMAGE などの、バイナリ ラージ オブジェクト (BLOB) データ型を含む列のバイト数を決定するのに使用します。このメソッドは、通常、GetBLOBData メソッドの呼び出しに先立って呼び出されます。GetBLOBData への第 3 のパラメータは、BLOB から取得するバイト数です。BLOB 列のすべてのバイトを取得するには、GetBLOBData を呼び出す前に、このメソッドを呼び出します。