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 ?

link|improve this question

49% accept rate
It depends. What are you afraid of? – SLaks Apr 13 '11 at 17:23
feedback

2 Answers

up vote 2 down vote accepted

Since SQL CE 2000 password protection is possible:

CREATE DATABASE "secure.sdf" 
DATABASEPASSWORD '<enterStrongPasswordHere>'

more here and here

link|improve this answer
feedback

Depending on what kind of protection you are looking for, you can password protect your database as well encrypt it.

If you're going to take advantage of either of those options, I believe you have to create the database in SQL Server Management Studio rather than letting Visual Studio create one for you. Take a look at the following page for instructions (page is for Sql CE 4 but should apply to other versions as well):

Dean Hume - A Simple Guide to SQL Compact 4

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.