What is a good embedded database to use with C#? [

2019-01-07 06:57发布

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#.

11条回答
够拽才男人
2楼-- · 2019-01-07 07:48

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

查看更多
一夜七次
3楼-- · 2019-01-07 07:50
欢心
4楼-- · 2019-01-07 07:50

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

查看更多
太酷不给撩
5楼-- · 2019-01-07 07:53

You can use SQL CE or SQLite.

查看更多
Melony?
6楼-- · 2019-01-07 08:02

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.

查看更多
登录 后发表回答