IsNull メソッド
バッファ列のデータが null であるかどうかを確認します。
名前空間: Microsoft.SqlServer.Dts.Pipeline
アセンブリ: Microsoft.SqlServer.PipelineHost (Microsoft.SqlServer.PipelineHost.dll)
構文
'宣言
Public Function IsNull ( _
columnIndex As Integer _
) As Boolean
'使用
Dim instance As PipelineBuffer
Dim columnIndex As Integer
Dim returnValue As Boolean
returnValue = instance.IsNull(columnIndex)
public bool IsNull(
int columnIndex
)
public:
bool IsNull(
int columnIndex
)
member IsNull :
columnIndex:int -> bool
public function IsNull(
columnIndex : int
) : boolean
パラメーター
- columnIndex
型: System. . :: . .Int32
バッファ行の列のインデックスです。
戻り値
型: System. . :: . .Boolean
列に nullNothingnullptrunitNULL 参照 (Visual Basic では Nothing) が含まれる場合は true、含まれない場合は false です。
説明
列が null Nothing nullptr unit NULL 参照 (Visual Basic では Nothing) の場合、PipelineBuffer は ColumnIsNullException を生成するため、GetBoolean など、データ型のアクセサ メソッドを呼び出す前に、IsNull メソッドを呼び出すことをお勧めします。