vote up 1 vote down star

I am looking for a free/opensource relational database to use on a commercial asp.net 3.5 project. Any recommendations?

flag

55% accept rate
(free or opensource) or (free and opensource) ? – Hugues Van Landeghem Sep 16 at 16:36

7 Answers

vote up 4 vote down check

Depending on the size of the project you might be able to get buy using SQL Express Edition.

link|flag
It being a server based application (ASP.NET) I'd second this option considering the good native support for this. – veggerby Sep 15 at 11:59
Err.. OP asked for a free/open source. – Clement Herreman Sep 15 at 11:59
2  
SQL Express has (commercial) limits on size of Db (4GB) and number of users (iirc, 4). I'm not sure about the license web use. – Henk Holterman Sep 15 at 12:01
1  
I believe that SQL express is free to distribute .. see microsoft.com/sqlserver/2005/… As long as you can live with the size limitations it could be a good choice – Peter M Sep 15 at 12:10
2  
@Clement: SQL Express isn't open source but it is free (as-in beer). – Luke Sep 15 at 12:10
show 4 more comments
vote up 0 vote down

PostgreSQL is licensed under a BSD license, which makes it an obvious choice if your product is commercial. That, and it's a very good database management system.

SQLite also has a friendly licesnse, but it is very different from a traditional SQL DBMS.

link|flag
vote up 2 vote down

C#-SQLite is a complete rewrite of SQLite (mentioned by Greg Hewgill) in C#. The Highlight: It's 100% managed .NET code.

link|flag
vote up 0 vote down

If you are using .NET I would go for a MS engine. SQL Express is garanteed to work good with .NET Now dependes on the size of your poject and the load the engine will be handling.-

Hope this helps.-

link|flag
vote up 4 vote down

Firebird - nice, scalable open source database with one of the best freeware .NET integration.

link|flag
Firebird support the latest .net framework firebirdnews.org/?p=3431 – Hugues Van Landeghem Sep 15 at 17:02
A blog post about Firebird enbedded and dotnet blog.coding.ro/2009/09/… – Hugues Van Landeghem Sep 18 at 17:15
vote up 2 vote down

SQLite is a public domain embeddable database engine that has many options for .NET language binding.

link|flag
It didn't support foreign keys last time I checked however. – Peter Sep 15 at 12:55
vote up 5 vote down

Here's a comparison between open source databases.

link|flag
This comparison is quite old (2005) and asp.net 3.5 was not ready at this moment. Derby and One$DB are probably very good database for java world but I don't find support for latest dotnet framework. MySQL is not free for commercial use. – Hugues Van Landeghem Sep 16 at 17:27

Your Answer

Get an OpenID
or

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