I am using SQLite
database version 3 with C#
Windows application..
i want to encrypt the SQLite database using password
or any other encryption way in order not to enable clients to open it.
and what are the changes should be added to the connection string
in the config file.
Asked
Active
Viewed 2,791 times
2

Prince Jea
- 5,524
- 7
- 28
- 46

Hassanation
- 866
- 2
- 14
- 29
-
set password for your Sql db then remove pass from app.config file and set it problematically in your code – KF2 Aug 30 '12 at 06:02
-
possible duplicate of http://stackoverflow.com/q/1259561/1045728 – Tommy Grovnes Aug 30 '12 at 16:17
1 Answers
3
Data Source=filename;Version=3;Password=myPassword;

Leandro Bardelli
- 10,561
- 15
- 79
- 116
-
how will this help from directly accessing the database?? I mean from the outside by opening it in sqlite studio or sqlite manager? – Jay Nirgudkar Nov 07 '14 at 07:33