vote up 3 vote down star
1

I'm going to be writing a Windows application using the .NET framework and C#. The application will need to store relational data which will be quieried, joined and processed.

Previously I've done this using SQL Server, but that is a total overkill for the application I am now making.

What's the simplest, easiest way to store relational data in my application? If I was on a Mac, I'd be using SQLite. What's the .NET equivalent?

flag

10 Answers

vote up 7 vote down check

If you are using VS 2008 and .NET 3.5, you can use SQL Server Compact Edition. It's not really a server at all, it runs in-proc with your app and provides a basic SQL database. The databases themselves are a single .sdf file and are deployed with your app. Since it's part of the framework, it also means there's no additional installation. Actually, It's not actually part of the framework, but it's easily redistributable. I'm using SQL Server CE for a personal project I'm currently working on, and it's turned out great so far.

link|flag
vote up 0 vote down

Microsoft JET Blue.

link|flag
vote up 0 vote down

Sqllite

Firebird

Mysql Embeded

link|flag
vote up 0 vote down

You can use SQL Lite with .NET. In fact, if you are willing to keep your code so it can translate to mono, which encompasses most 2.0 (3.5 still upcoming), you can run your code on the Mac, as well, if you stick with SQL Lite:

http://mono-project.com/Main_Page

It really depends on how much bang you need. SQL Express, which has been mentioned numerous times in this thread, is SQL Server. It has some restrictions over full blown SQL Server, but it is the full SQL Server engine, so it is not a lite version, unless you think restricting a database to 4 GB makes it light. If you need heavier services like some Reporting, some message queueing (service broker), then SQL Express 2008 is your creature.

For lighter in the MS world, you can go with SQL Compact. As with SQL Lite, it is limited in scope, but you stated you need a lightweight database.

If you are really familiar with SQL Lite, I see no reason not to head that direction. Add a factory on top of your database access, just in case you change your mind. Then you will not have to rip up your entire app to switch databases.

link|flag
vote up 3 vote down

Sql Server Compact Edition (*.sdf files). Small enough for Smartphones but also available on the full platform. The .net 2 version was called Sql Server Mobile.

Here is a comparison between Compact and Express.

link|flag
vote up 3 vote down

Sqlite is definitely the best option for embedded database for application storage. It is free fast and reliable.

link|flag
vote up 0 vote down

If not sqlserver express, You may want to conisder Microsoft SQL Server Desktop Engine ( scaled down version of sqlserver) which is free in most cases. or MySQL which is also free. I'prefer mysql.

link|flag
MySQL has some serious issues that had yet to be resolved last time I checked. SQL Server Express (or MSDE) is infinitely superior. – Andrew Feb 21 at 11:15
MSDE has been replaced by SQL Server Express. – Jakob Christensen Feb 21 at 11:21
MySQL will still require a server install and your left in a poorer situation in several ways (tools, mature features) than if you had gone with Express. It would add negatives without any positives. – Kaius Feb 21 at 11:23
vote up 2 vote down

Why cant you use SQLite? It works on windows. SQLite Quick start.

Also see here for getting it to work with .NET http://www.mikeduncan.com/sqlite-on-dotnet-in-3-mins/

So you could use SQLite if you wanted to but perhaps as others have pointed out SQL Express is a better option as you can upgrade to a full server if you need to in the future. Although from what you wrote i don't know if that's likely.

link|flag
Is there any benefit of SQL Lite over SQL Server Compact Edition? – Richard Feb 22 at 0:50
TBH ive only played with SQLite a small amount. Im no expert in the advantages/disadvantages but i know it does work with .NET – Kaius Feb 23 at 8:26
vote up 7 vote down

SQL Server Express is what you want. It's free IIRC and easily scales into full-blown SQL Server when required.

link|flag
And is included with a default VS install. – Richard Feb 21 at 11:09
And it works with both LINQ-to-SQL and Entity Framework ;-p – Marc Gravell Feb 21 at 11:38
Express is good, but it is not equivalent to SQLite. – Jon Rimmer Feb 21 at 11:58
vote up 0 vote down

I would say Microsoft Access. You need a licence though ...

link|flag
Access (*.mdb) files are outdated en deprecated. You don't need a license to use the underlying MsJet database though. Just for the Access application. – Henk Holterman Feb 21 at 11:37
Henk, do you have a reference from MS where they say it is deprecated and should no longer be used? – divo Feb 21 at 13:06
@divo, see msdn.microsoft.com/en-us/library/… – Henk Holterman Feb 22 at 22:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.