Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which local database is suitable for Windows 8 Store Apps?

Tags:

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.

like image 875
Simon Schürg Avatar asked Nov 25 '12 12:11

Simon Schürg


Video Answer


1 Answers

SQLite is supported for WinRT.

http://visualstudiogallery.msdn.microsoft.com/23f6c55a-4909-4b1f-80b1-25792b11639e

like image 132
Ercan Özdemir Avatar answered Sep 18 '22 01:09

Ercan Özdemir