I am developing an uwp application , and using sqlite async PCL , and i need to encrypt my database file , i already saw this link SQLite with encryption/password protection but i can't migrate to those libraries ,i need a solution within SQLite.Net.Async PCL
Asked
Active
Viewed 1,199 times
0
-
can you describe the problem why you "but i can't migrate to those libraries" ? – iamIcarus Apr 27 '17 at 09:55
-
The sqlite can be set password – lindexi Apr 27 '17 at 09:57
-
i'm actually using sqlite.net pcl async (sqliteasyncconnection ) so i need a solution within this library – ASEL Apr 27 '17 at 10:08
-
@lindexi SQLiteConnection conn = new SQLiteConnection("Data Source=MyDatabase.sqlite;Version=3;"); conn.SetPassword("password"); conn.open(); ======> SQLiteAsyncConnection doesn't support a method like setPassword – ASEL Apr 27 '17 at 10:12
-
1Are you using [this](https://github.com/praeclarum/sqlite-net) library (i.e. this [nuget package](https://www.nuget.org/packages/sqlite-net-pcl))? If so, check out [this sample](https://forums.xamarin.com/discussion/89394/sqlite-net-pcl-with-sqlitepclraw-bundle-sqlcipher). – Ali Zahid Dec 13 '17 at 04:18