3

I am currently using Local Storage on both Android and iOS, but reaching capacity limits. So I thought to switch to WebSQL, which is of course deprecated but still working on both platforms.

The question is: is there any limitation regarding the maximum size of the database beside of the natural limitations of Sqlite databases?

I know the answer for Android, which is 'no' (see SQLite database maximum storage capacity).

But it would be nice to get it for iOS, too, before implementing.

Thanks!

Community
  • 1
  • 1
asp_net
  • 3,567
  • 3
  • 31
  • 58

2 Answers2

4

According to FT lab, 50 MB is the limit for iOS.

Kyaw Tun
  • 12,447
  • 10
  • 56
  • 83
1

I know this is an old post but during my testing on WebSQL on iOS I also found that the limit was around 50MB.

I created a plugin to work around this limit for storage.

https://github.com/Thinkwise/cordova-plugin-update-quota

Dick van den Brink
  • 13,690
  • 3
  • 32
  • 43