Which local database is suitable for Windows 8 Store Apps?
c#, database, sqlite, visual-studio-2012, windows-store-apps
Solution
SQLite is the recommended database to be used for Win 8 Apps. Links for implementing the same
http://timheuer.com/blog/archive/2012/08/07/updated-how-to-using-sqlite-from-windows-store-apps.aspx
http://code.msdn.microsoft.com/windowsapps/Using-SQLite-Asynchronously-b8372137
https://visualstudiogallery.msdn.microsoft.com/23f6c55a-4909-4b1f-80b1-25792b11639e
Problem
I'am programming a `Windows 8 Store App` (Metro Design) with `C#` and `XAML` using `Visual Studio 2012`. There is no need for a database server with multi user support etc. I want to store my data in a local database and don't know which database is suitable for my needs. Maybe `SQLite`? Or are there solutions that fits better for Windows Store Apps and integrates better in Visual Studio? The app is kind of a calender and the database should store the user data that consists of the dates, tasks and so on.