tags:

views:

94

answers:

3

I need to include a database in a C# project with a lot of data. This database should be free even in a commercial use.

What database should I use?

[EDIT]

I would like to know what database are to be avoided. When I say "a lot", it's for scientific calculation so it will be huge data.

A: 

http://www.fakenamegenerator.com/ might help you out. Depends on the type of data you need.

glasnt
What a different approach to the question than mine :)
I can warmly recommend fakenamegenerator. It even generates US and CA addresses in the right geografical distribution.
Roland Bouman
+1  A: 

Well, you can use actually almost anything, PostgreSQL, SQLite, and even Microsoft's SQL Server Compact or SQL Server.

It also depends on what is "a lot of data"/

+2  A: 

I've used PostgreSQL database for my own "semi-scientific" proof of concept project. Stored 50GB+ data. My experience is positive. You should be careful about partition scheme and indexing. It is free and supported by large online group.

Mevdiven