connection クラス : Close()メソッド
説明
データベースへの接続を閉じます。
構文
instance.Close()
引数
無し。
返り値
無し。
サンプルコード
| 1: | connection cnn = new connection("Data Source=c:\somedirectory\somedatabase.sqlite3;Version=3;"); |
| 2: | cnn.Open(); |
| 3: | ... // Access to the database. |
| 4: | cnn.Close(); |
注意
無し。
参照リンク
無し。


