dbreader クラス : Get(int)メソッド
説明
指定された列の値を返します。
構文
instance.Get(int columnIndex)
引数
クラス | 名前 | 説明 |
int | columnIndex | 列番号。 |
返り値
クラス | 説明 |
string | 列の値。 |
サンプルコード
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: | string value = dbr.Get(0); // The value of the first column. |
7: | endwhile |
8: | dbr.Release(); |
9: | cmm.Release(); |
10: | cnn.Close(); |
11: | cnn.Release(); |
注意
返り値がstringクラスであることに注意してください。
結果が数値の時は、数値が文字列として戻ります。例 : 1 -> '1' / 1.05 -> '1.05'
結果が文字列の時は、文字列がダブルクォートで囲まれて戻ります。例 : 'Returned string' -> '"Returned string"'
結果がnullの時や評価不能の時は、文字列 'null' が戻ります。
列番号は、0から始まるインデックスで指定してください。
引数に対応する列が存在しない時は、例外 (UnknownException) がスローされます。
参照リンク
無し。