Is there a way to protect a *.sdf (sqlCE file) with a password or implement a similar security measure?
i try this:
if (!File.Exists(SDK))
{
SqlCeEngine engine = new SqlCeEngine("Data Source=" + SDK + "; Case Sensitive=True");
engine.CreateDatabase();
OpenConn();
SqlCeCommand CMD = new SqlCeCommand();
CMD = Conn.CreateCommand();
CMD.CommandText = "Create table MEN(Code int ,Fname nvarchar(50),Lname nvarchar(50))";
CMD.ExecuteNonQuery();
}
where to change to have password ?