top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Difference between SQLite Vs IsolatedStoarge?

+1 vote
205 views
Difference between SQLite Vs IsolatedStoarge?
posted Jan 5, 2015 by Saravanan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes
 
Best answer

A very common task for most of the applications is to store and access the data. Almost all applications has to store some kind of user data for a later use. This is the reason why mobile platforms provide ways to the developer handle those data; with Windows Phone 8 is not different, it provides theSystem.IO.IsolatedStorage namespace to access files and/or application settings.

This is normally enough for many applications, but a database would be better if the user wants to store data in a more structured way. This post is about the use of the SQLite database to handle those structured data.

answer Jan 6, 2015 by Jdk
...