dbreader クラス : IsDBNull(int)メソッド
説明
指定された列の値が null かどうかを示す値を返します。
構文
instance.IsDBNull(int columnIndex)
引数
クラス | 名前 | 説明 |
int | columnIndex | 列番号。 |
返り値
クラス | 説明 |
bool | 列の値が null かどうかを示す値。 |
サンプルコード
1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
2: | cnn.Open(); |
3: | command cmm = new command("select * from sometable where id < 100;", cnn); |
4: | dbreader dbr = cmm.Reader(); // Command execution. Returns multi-line results. |
5: | while(dbr.Read()) |
6: | bool isnull = dbr.IsDBNull(0); |
7: | endwhile |
8: | dbr.Release(); |
9: | cmm.Release(); |
10: | cnn.Close(); |
11: | cnn.Release(); |
注意
指定列が null の場合は true を返します。そうでない場合は、false を返します。
列番号は、0から始まるインデックスで指定してください。
引数に対応する列が存在しない時は、例外 (UnknownException) がスローされます。
参照リンク
無し。