2

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.

Prince Jea
  • 5,524
  • 7
  • 28
  • 46
Hassanation
  • 866
  • 2
  • 14
  • 29

1 Answers1

3
Data Source=filename;Version=3;Password=myPassword;

Source: http://www.connectionstrings.com/sqlite

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