C#, or third part sql Database

  • Thread starter Thread starter Romain TAILLANDIER
  • Start date Start date
R

Romain TAILLANDIER

Hi group

I need a SQL database in my application, and i need i can sell it with the
app.
It have to supports thousands of enregistrement in few table not related.
It don't have to be extremely efficient, or multi utilisators
There is no extreme specs.
It have to be intregrated in my app.

My questions are :
- is there a C# native SQL database (or something ?)
- do you know abou third part (chip by préférence) SQL database, wich could
be what i need ?
- do you think i can reasonably play with XML file to simulate a database ?
- others ideas ?

please don't search for me i don't want to waste time (mine nor yours) just,
if you allready know response to my questions give me it.

thanks you for your tips guys :)
ROM
 
MSDE is suitable if you are sure that your data size will never exceed 2GB.

If your datasize exceeds 2GB MSDE will completely lock the DB. you
cannot access it from any of the tools or utilities.

So be sure not to cross the 2GB line.

regards,
Abhishek.
 
- is there a C# native SQL database (or something ?)

Well, Visual Studio:NET includes the MSDE 2000 version of SQL Server
2000 - quite a capable database.

Also, if you need a free alternative, I'd suggest you look at FireBird
www.ibphoenix.com - very powerful, very well supported, with .NET
provider and all.

Marc

================================================================
Marc Scheuner May The Source Be With You!
Bern, Switzerland m.scheuner(at)inova.ch
 
Back
Top