Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What should i use for a local database in a windows 8 metro app [closed]

I want to write a media management Metro app for windows 8 and I want to store all my metadata for the app in a file based database that should only be usable by the app. Ive already made a similar app for windows 7 and I used Sql Compact for the data but im not sure if sql compact is compatible with win8.

So what should I use for storing data in a Metro app?

like image 314
Lightweight Avatar asked Oct 08 '22 05:10

Lightweight


1 Answers

I'm using IndexedDB, if you use Metro app javascript, no need third party libraries to accessed it. because Metro app javascrip using the same engine with IE10.

like image 127
Tigabelas Technology Avatar answered Oct 18 '22 14:10

Tigabelas Technology