Is there something like HSQLDB (for Java) which can be run in a storage-in-file mode for C#/.NET 3.5?
That sounds great, does SQL Compact supports an user management?
codedevour
2009-10-06 12:58:59
Nope, encryption and password protection is all you get.You will need to look at SQL Express for security features.
leppie
2009-10-06 13:09:28
Oh, but that's all i need. So i can encrypt and have password protection. That nobody else can look into. Thank you very much.
codedevour
2009-10-06 13:13:07
+1
A:
I'm not totally sure about your requirements, but you could try SQLite.
Kirschstein
2009-10-06 12:31:46
It's working quite nicely for me as unit test DB with NHibernate, a scenario that is fairly common. However that is even an in-memory situation but against file should be working, too.
flq
2009-10-06 12:52:00
Sorry that i didn't mentioned it before: SQLite sadly doesn't support an user management system, it's to easy to look into with another tool.
codedevour
2009-10-06 13:01:55