SQL Server Compact 4.0 vs. SQLite

SqliteSql Server-Ce

Sqlite Problem Overview


I'm interested in choosing an embedded DB engine for my WPF app. I would like information on how SQLite and latest SQL CE 4.0 compare. And if I should choose one over the other. Points of interest would be ORM support with EF4's CTP & NHibernate 3.

Thanks in advance!

Sqlite Solutions


Solution 1 - Sqlite

See this answer: https://stackoverflow.com/questions/67127/database-functionality-with-wpf-app-sqlite-sql-ce-other

  • SQL Compact 4 has full support for Entity Framework, Linq to SQL
  • Includes all neccesary file for private deployment
  • has good tools support in Visual Studio 2010 and 2012
  • has a smooth migration path to SQL Server

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAVP06View Question on Stackoverflow
Solution 1 - SqliteErikEJView Answer on Stackoverflow