Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the best way to store/retrieve data for a desktop without using a database?

i have a question about storing data for a desktop application, if i'm to deployed an application without a MS SQL database, how could i facilitate the retrieving/storing of data. I know i can also serializes the data objects into a file (such as XML file), is there any other more efficient or effective way?

like image 691
aggietech Avatar asked Feb 11 '10 04:02

aggietech


2 Answers

SQLite does very well as an embedded database. Even has .NET/Mono bindings available.

like image 106
Ignacio Vazquez-Abrams Avatar answered Nov 15 '22 06:11

Ignacio Vazquez-Abrams


You could look into SQL Server Compact Edition.

like image 21
Shane Fulmer Avatar answered Nov 15 '22 05:11

Shane Fulmer