command クラス : CommandText(string) セッタ

説明

SQL文を設定します。

構文

instance.CommandText = value;

代入値

クラス説明
stringSQL文。

返り値

無し。

サンプルコード

1:

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

2:

cnn.Open();

3:

command cmm = new command(cnn);

4:

cmm.CommandText = "create table sometable (id int, name text);";

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.