vote up 0 vote down star

What is a good way to distribute a small database on CD-ROM?

The Database has to be encrypted. It must run on WinXP and Vista. The application is written in C# and is also distributed on CD. Records are only read but not written.

Its ok to run an installer, but we prefer not to do it.

The DB has 100000 records and performance is not the primary goal.

EDIT: Yes the user will have to enter a password to decrypt the database.

flag

2  
So you're including the application with the database decryption keys alongside the encrypted database? Or does the application make a call to a central server to get the decryption keys based upon some authentication data the user supplies? – JeeBee May 28 at 10:24
Yes everything is on a CD - application and DB. I only want to prevent the DB from beeing used by something else than my app. I am not shure if this is even possible. – Mathias Fritsch May 28 at 12:40

6 Answers

vote up 6 vote down check

I would use SQLite for this.

Actually re-reading your question, you could even use a flat or an XML file, given that there is no need for performance or updates/adds.

If there is any chance you will need to add/update this data source as your app matures, though, go with SQLite.

link|flag
vote up 2 vote down

Honestly... If you can do it I would use encrypted XML files. No install,runs anywhere (text files have no dependencies), fast and since updates are not necessary, that would make it even easier.

link|flag
vote up 2 vote down

If you work for a govt agency in the UK, try not to leave the CD on the train or send it in the post... :)

link|flag
I know it's a droll comment, but it brings up a valid point - why does this database need to be encrypted - is it holding sensitive data? If so, then it shouldn't be on a CD, especially alongside the application that includes the decryption keys! – JeeBee May 28 at 10:17
vote up 2 vote down

SQL Server CE is a stripped down version of SqlServer (CE stands for Compact Edition) that supports encryption. The DB consists in one single file.

The software consists in a set of DLL that you copy side by side with your exe.

(Don't be fooled by the CE: There is a Desktop Windows version in addition to the Windows Mobile version.)

link|flag
I think CE stands for Cripple Edition :) – leppie May 28 at 10:42
Naaah! It's Cute Edition :-D – Serge - appTranslator May 28 at 11:16
SQL Server CE has an install. The dll is not sufficient to run it. – jle May 28 at 14:27
vote up 1 vote down

The Database has to be encrypted

Quick question: How do you decrypt it? Properly, by having the user type in the decryption password, or improperly by adding the decryption key to your application, which means it can be easily extracted?

Because if it's solution 2, then you can broaden your possible database options by dropping the encryption requirement altogether.

I was looking for an embedded database also, and based on the answers I received, I went with SQLite, which is easy to implement.

link|flag
vote up 0 vote down

As others pointed out, there databases which support read-only access.

As for encryption, SQLite has at least one extension supporting encryption

You may also choose any read-only dbms and keep pk's and fk's, but encrypt the contents fields manually (i.e. by code)

link|flag

Your Answer

Get an OpenID
or

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