次の方法で共有


GetBlobLength メソッド

バイナリ ラージ オブジェクト (BLOB) PipelineBuffer 列に含まれるバイト数を取得します。

この API は、CLS に準拠していません。 

名前空間:  Microsoft.SqlServer.Dts.Pipeline
アセンブリ:  Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)

構文

'宣言
<CLSCompliantAttribute(False)> _
Public Function GetBlobLength ( _
    columnIndex As Integer _
) As UInteger
'使用
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim returnValue As UInteger

returnValue = instance.GetBlobLength(columnIndex)
[CLSCompliantAttribute(false)]
public uint GetBlobLength(
    int columnIndex
)
[CLSCompliantAttribute(false)]
public:
unsigned int GetBlobLength(
    int columnIndex
)
[<CLSCompliantAttribute(false)>]
member GetBlobLength : 
        columnIndex:int -> uint32 
public function GetBlobLength(
    columnIndex : int
) : uint

パラメーター

戻り値

型: System. . :: . .UInt32
バイナリ ラージ オブジェクトのバイト数です。

説明

GetBlobLength メソッドは、DT_IMAGE など、BLOB 型を含む PipelineBuffer 列に含まれるバイト数を指定するのに使用します。このメソッドは、通常、GetBlobData メソッドの呼び出しの前に呼び出されます。GetBlobData への第 3 のパラメータは、BLOB から取得するバイト数です。BLOB PipelineBuffer 列のすべてのバイトを取得する場合、GetBlobData の前に GetBlobLength を呼び出します。