Password protection or encryption of sqlite database

is there a way to protect my database against missuse?
i am using g400 hardware platform and net-mf 4.3

Maybe you can encrypt the database on your media but then decrypt and load in team I for use. I am not even sure of this can be done.

this is a standard way to configure sqlite db on .net windows:
conn = new SQLiteConnection(string.Concat(“Data Source=”, txtPath.Text, “;Password=”, txtPassword.Text, “;”)); }

has anybody experience with those functionality on netmf ghi platform?