0

Let me describe my scenario first.

  1. I want to build an PhongeGap app for Android[4+] and IOS[5,6,7].

  2. In which I want to store data around 3 to 4MB at max.

  3. A user can use the app upto 2yrs of duration.

I read the PhoneGap Documentation on storage. According to the document WebSQL would be the sufficient implementation.

The followings are the factor why I am rethinking about WebSQL.

  1. Will there be any support issue or compatibility issue in IOS,

  2. Long term usage of the app so we should not compromise the data [WebSQL is Webstorage] &

  3. Clearing the cache, Install/Uninstall of browser, clearing temp shouldn't cause the loss of data.

Suggest a Storage mechanism in my scenario.

dhineshsundar
  • 112
  • 1
  • 10

1 Answers1

0

You can use html5 localstorage for your storage because it support until 5mb.

Nurdin
  • 23,382
  • 43
  • 130
  • 308