command クラス : command(string,connection,transaction) フィッタ

説明

command クラスの新しいインスタンスを返します

構文

new command(string commandText, connection cnn, transaction tran)

引数

クラス名前説明
stringcommandTextSQLステートメント。
connectioncnnデータベース接続。
transactiontranトランザクション。

返り値

クラス説明
commandcommand クラスの新しいインスタンス。

サンプルコード

1:

connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;");

2:

cnn.Open();

3:

transaction tran = cnn.BeginTransaction();

4:

command cmm = new command("create table sometable (id int, name text);", cnn, tran);

注意

返されたインスタンスは初期化されています。

参照リンク

無し。

Copyright © Cooker All rights reserved.