command クラス : CommandText ゲッタ
説明
SQL文を返します。
構文
instance.CommandText
引数
無し。
返り値
クラス | 説明 |
string | SQL文。 |
サンプルコード
1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
2: | cnn.Open(); |
3: | command cmm = new command("create table sometable (id int, name text);", cnn); |
4: | string sqlStr = cmm.CommandText; // create table sometable (id int, name text); |
注意
無し。
参照リンク
無し。