English 中文(简体)
Replacement for SQL Server CE for ClickOnce applications
原标题:

I have come to the conclusion that SQL Server CE isn t a viable product. Between the versionsing issues and the impossibility of a non-administrator install it just doesn t work at my company.

Off hand I m thinking about Jet, Oracle Berkeley, and SQLite. Given that I m using .NET with ClickOnce, what embedded database would you recommend and why?

最佳回答

Hands down, SQLite - so long as your data entities can fit within its capabilities. Check out the various providers available and see what works for you. This one has worked well for me.

问题回答

SQLite is something you should consider. It has a .net data provide, is fast and probably provides everything you need.

http://sqlite.phxsoftware.com/

I haven t tried but you could use the DeveelDB, is written in C#: http://db.deveel.com/Main_Page





相关问题
Change namespace of a deployed clickonce application

I made a bit of a namespace spelling mistake and I wish to correct it. My application currently uses Application.Settings to store a bulk of the user s information. If I refactor my namespace to be ...

which certificate is used by smartclient application

I have an .net smartclient application OA.Smart.WinUI. I have three .pfx files listed in this project OA.Smart.WinUI_1_TemporaryKey.pfx,OA.Smart.WinUI_2_TemporaryKey.pfx,OA.Smart.WinUI_TemporaryKey....

ClickOnce application deployment woes

I have a ClickOnce WPF application which is launched from a page on a web site. The URL parameters used to invoke the application tell the application what IP address to communicate with plus some ...

Making a single ClickOnce installer for two applications

I am using Visual Studio C# 2008 Express Edition. I have a Solution that has several projects, most of which are class libraries but two of which are executable projects (a GUI and a command-line ...

Configuration file with ClickOnce deployment

I ve been trying to modify my application to deploy and update using ClickOnce. I ve managed to get the program working but I m having trouble with the program configuration. My program uses a custom ...

Click Once Migrate URL

I have a Click Once App that has been published to the same location for a couple years, I now want to post an update to the program but want to migrate it to another url, is it a 2 step deployment? ...

热门标签