vote up 3 vote down star

I am creating a small application that will be deployed on Window. The database will have less than 10 tables.

Instead of installing a database on the client box is using XML documents for the database and LINQ going to cost in performance of queries, waiting for the XML file to be loaded and be written?

If I use a database I will use LINQ to SQL.

flag

5 Answers

vote up 2 vote down check

You can use an embedded database like SQLite or the portable version of SQL server (can't remember what it's called), that way you can still use SQL and LINQ but you don't need to install a database server

link|flag
That would be SQL Server Compact Edition. – Lucas Oct 1 '08 at 21:03
vote up 7 vote down

I would avoid it. I personally would use something like SqlExpress for the DB, or an .mdb file. The problem becomes when that Xml file starts getting large, or requires a change to the format (i.e. an update to a table's structure), processing that becomes a PITA.

link|flag
vote up 0 vote down

I would prefer that if you choose the database route. One of the main reasons is that you can perform many different functions easily when using database. These functions include sorting, paging, grouping etc. You can also use the power of OR mappers to simply your coding and achieve the persistence, retrieval operations with very few lines of code.

The bottom line is go with the database!

link|flag
vote up 0 vote down

See also this question for a lot of related answers.

Simple database application for Windows

link|flag
vote up -1 vote down

Adding some references to MagicKat's answer:

Not very portable, but free and limited -

SQL Server 2008 Express

Microsoft JET is a better fit to Nir's compact requierment. It is embedded (installed as a DLL), and you can move the DB as a single file (.mdb). From the Wikipedia article, I learn that the current version is Microsoft Access Engine.

link|flag

Your Answer

Get an OpenID
or

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