command クラス : command(string,connection) フィッタ
説明
command クラスの新しいインスタンスを返します
構文
new command(string commandText, connection cnn)
引数
クラス | 名前 | 説明 |
string | commandText | SQLステートメント。 |
connection | cnn | データベース接続。 |
返り値
クラス | 説明 |
command | command クラスの新しいインスタンス。 |
サンプルコード
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); |
注意
返されたインスタンスは初期化されています。
参照リンク
無し。