次の方法で共有


IsNull メソッド

指定した列が null であるかどうかをチェックします。

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

構文

'宣言
Sub IsNull ( _
    hRow As Integer, _
    hCol As Integer, _
    <OutAttribute> ByRef pfNull As Boolean _
)
'使用
Dim instance As IDTSBuffer100
Dim hRow As Integer
Dim hCol As Integer
Dim pfNull As Boolean

instance.IsNull(hRow, hCol, pfNull)
void IsNull(
    int hRow,
    int hCol,
    out bool pfNull
)
void IsNull(
    [InAttribute] int hRow, 
    [InAttribute] int hCol, 
    [InAttribute] [OutAttribute] bool% pfNull
)
abstract IsNull : 
        hRow:int * 
        hCol:int * 
        pfNull:bool byref -> unit 
function IsNull(
    hRow : int, 
    hCol : int, 
    pfNull : boolean
)

パラメーター

  • pfNull
    型: System. . :: . .Boolean%
    列の値が null であるかどうかを示す out パラメータです。

説明

このメソッドは、バッファ列に格納されたデータが null または空であるかどうかをチェックします。マネージ データ フロー コンポーネントを開発する場合は、このメソッドを呼び出すのではなく、代わりにマネージ PipelineBuffer クラスの IsNull メソッドを使用します。