dbreader クラス : Name(int)メソッド

説明

列の名前を返します。

構文

instance.Name(int columnIndex)

引数

クラス名前説明
intcolumnIndex列番号。

返り値

クラス説明
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:

string name = dbr.Name(0);

6:

dbr.Release();

7:

cmm.Release();

8:

cnn.Close();

9:

cnn.Release();

注意

引数に対応する列が存在する場合は列の名前を返します。そうでない場合は空文字列を返します。

列番号は、0から始まるインデックスで指定してください。

参照リンク

無し。

Copyright © Cooker All rights reserved.