Search code examples
c#sqldatabasedesktop-applicationstrongly-typed-dataset

Offline application - database


I have a problem with in choosing a database for desktop applications. The application will work offline, and require a relational database.

My first idea was to create a strong typed dataset and keeping data in xml. But this is not a safe option.

The second idea is to place the SQL Express on computer, but it will be a exhausting.

Which option should I use? Maybe you have other ideas?


Solution

  • You can either use SQLite with SQLite-NET or SQL Server Compact Edition for an offline database.

    Quick edit: here and here is a comparison of SQL Server CE vs SQLite.