up vote 6 down vote favorite
4
share [g+] share [fb]

I'm currently designing a small application in .Net and in the past I've been using MSAccess as standalone database that I can ship with the program. But I was wondering if in this day and age there wasn't alternative solutions, as easy to integrate in a .Net app., as transparent for the user and maybe better performance with large amount of data?

Cheers!

link|improve this question

feedback

7 Answers

up vote 13 down vote accepted

Your options are:

SQL CE and Firebird are a lot faster when you need multithreaded writes, sqlite is king for single threaded access, or multithreaded reads. VistaDb is 100% managed so you can ship it on embedded devices.

These DBs in general will give you better reliability and performance to access. I would strongly recommend against using any of these dbs over a network share.

link|improve this answer
For Firebird you can see here : firebirdnews.org/docs/fb2min.html – Hugues Van Landeghem Jun 19 '09 at 20:44
ESE is not hard to intagrate with .NET anymore... You can use ESENT Managed Interop codeplex.com/ManagedEsent – spinodal Nov 27 '09 at 20:17
managed ese net is still fairly complex to consume compared to the other embedded dbs, it has a great advantage that it ships with windows. – Sam Saffron Nov 27 '09 at 21:18
+1 for sqlite :) – Aviatrix Aug 31 '10 at 16:48
feedback

SQLite! This is exactly what it was made for.

http://www.sqlite.org/

http://sqlite.phxsoftware.com/

link|improve this answer
feedback

Yes. I would recommend System.Data.SQLite, which is a ADO.NET wrapper around SQLite, a popular embedded database written in C.

link|improve this answer
feedback

SQLite appears to match your needs -- see here for more.

link|improve this answer
feedback

VistaDb is another one

link|improve this answer
feedback

There is always SQL Server CE... but I have found SQLite to be much easier to work with, especially with System.Data.Sqlite

link|improve this answer
feedback

Try C#-SQLite - an independent reimplementation of the SQLite:

csharp-sqlite

Translated from C to C#. Pure managed code. No mixed-mode netmodule.

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.