Kodok Márton wrote:
Hello,

I use C# to connect SQLite.
connStr = @"Data Source=" + databaseFilePath + ";New=True;Version=3;";
conn = new SQLiteConnection(connStr);

I know I can add a Password=something; string to the connection string in order to get a locked/encrypted database. I am wondering if there is a quick and simple way to transform a not encrypted database to an encrypted one?

Regards,
Marton

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
That functionality is implemented by the .NET wrapper you are using - I'm afraid you will have to ask the question on the mailing list operated by that project.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to