views:

22

answers:

1

Hello,

I am using SQLite JDBC driver from xerial project. What do we mean when we say encrypting the sqlite db ? I would like to know the best way to encrypt either the data in the db or the whole sqlite DB. For that, do I need to encrypt each field value and then write it in to DB or should I simply encrypt the .db file using Java ? What are the pros and cons and method generally used ? Any help is appreciated.

Thanks, Deep

+2  A: 

try this http://sqlite-crypt.com/index.htm

Aaron Saunders
Can this be used in Java ? What I understand is this is only for C/C++ ?
DG