简体   繁体   中英

How to store data for Windows App's

I'm not familiar with App development therefore I do not know where to start.

I need to store data locally for a Windows Phone Application, however i do not know where to go about doing this..

Is storing data locally like storing data in an SQL database such as MySQLWorkbench for example does it use SQL queries to insert and retrieve data?

Where is the local database? and how does it work? Does every windows phone have a universal database which all apps share? or does it have a separate database for each app?

I've been searching Google on how to go about doing this for days now and I can't find anything useful, if anyone has any useful tutorials that would be appreciated!

You don't have built-in local database in Windows Phone/Windows apps. You can store data in local storage. This isn't database - you can store json files etc.

Read this: http://www.c-sharpcorner.com/UploadFile/6d1860/how-to-implement-local-storage-in-universal-windows-apps/ for Windows Universal Apps or this: https://dzone.com/articles/using-local-storage-windows for Windows Phone Silverlight

You have one storage per app, but if you're developing Windows Universal Apps you can have shared storage between Windows Phone and Windows Desktop app. Read about Roaming Data

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM