up vote 8 down vote favorite
3
share [g+] share [fb]

With the demise of VistaDB (vistadb.net), I am on the look out for a good embedded database to use for my C# programming.

Does anyone have any suggestions for something to use that it is simple to install along with my application? VistaDB was simple because I only had to copy 1 DLL file along with my app to get it to work.

I am looking for something like that but with good documentation/samples for C#.

Thanks.

link|improve this question

What ​​​demise? – SLaks Sep 3 '10 at 22:04
1  
Not a full duplicate, but some answers may be useful: stackoverflow.com/questions/705 – Michael Stum Sep 3 '10 at 22:20
feedback

9 Answers

up vote 11 down vote accepted

SQLite with C# wrapper

link|improve this answer
feedback

You can take a look at Firebird which have very good dot net drivers

http://www.firebirdsql.org/manual/ufb-cs-embedded.html

Another useful link here

link|improve this answer
1  
Firebird is wonderful for server installations or single user installations. It has an embedded version that is suitable for single user scenarios and you do not have to install anything. It uses the same database file for both server and embedded database so you can easy go from single user to multi user and vice versa. – Yiannis Mpourkelis Sep 8 '10 at 20:40
1  
Also supports triggers, stored procedures, etc. And you can upgrade to enterprise grade just installing the c/s version and backing up/restoring the database to the new server. The dll is the client lib and also acts like the server, all in just one dll. – José Romero Sep 8 '10 at 23:24
1  
Here are the reasons Firebird is preferred over SQL Server and Oracle Express : No license fees and is Limitless (No matter how large is the machine CPUs+ Memory or how big is your database :Terabytes) , Start small grow large and still no fee to pay and you can use the same database file :example.fdb in both embedded and in SuperServer version (client server model) after application requires external connection (Did i mentioned that is multi threaded and lockless if you compare it with sqlite ) blog.cincura.net/… – Mariuz Sep 9 '10 at 9:48
feedback

You can use SQL CE or SQLite.

link|improve this answer
feedback

try SQLite. its small fast and well maintained. here is another SO Question discussing C# wrappers. it looks like the one they describe there (http://sqlite.phxsoftware.com/) should suit your needs

link|improve this answer
feedback

SQL CE 4.0 + EF4 is awesome.

The only problem is the lack of information on how to deploy it, since it's still in CTP.

link|improve this answer
feedback

For an object-oriented embedded database, check out Perst from McObject. Perst is open source/dual-licensed and you can download complete source code:

http://www.mcobject.com/perst

link|improve this answer
feedback

I just finished building a first version of VelocityDb which is an excellent choice for embedded applications due to a small footprint, ease of use and high performance. It is also optionally distributable. Some usage is free, and limited time usage is free even for a distributed case.

link|improve this answer
feedback

Another option on the object database camp is db4o which supports java/.net natively.

Best

link|improve this answer
feedback

SQL CE is great and simple to integrate with.

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.