アプリ用の汎用データベースハンドラークラスを作成しました。
ローカルデータベースを使用しているので、SqlCeConnection
ここではクラスが使用されています。
接続文字列が有効であることをテストしたいので、実行する前にユーザーへの接続ステータスを更新しますconnection.Open();
まあ言ってみれば
SqlCeConnection conn = new SqlCeConnection(connectionString);
//so far we have only created the connection, but not tried to open it
//Would be nice to update the UI to say that conn is OK
conn.testConnection();
conn.Open();
open
私は接続を試みるメソッドを書くことを考えていました、私はclose
これを考えるのが正しいですか、それともより良い方法がありますか?