command クラス : Connection(connection) セッタ

説明

データベース接続を設定します。

構文

instance.Connection = value;

代入値

クラス説明
connectionデータベース接続。

返り値

無し。

サンプルコード

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);");

4:

cmm.Connection = cnn;

注意

無し。

参照リンク

無し。

Copyright © Cooker All rights reserved.