Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2011-04-14から1日間の記事一覧

SQLiteのDBファイルを暗号化する

暗号化 パスワードを設定することで暗号化されます。 using (SQLiteConnection connection = new SQLiteConnection()) { connection.ConnectionString = "Data Source=[ファイルパス]" connection.Open(); connection.ChangePassword([設定するパスワード]);…