0

I am developing a Hybrid app (ionic 1) using Cordova. The app is an extension of a web app. I wish to make an offline mode in the app which will allow the user to do limited functions, however, this still requires some data to reside on the app in SQLite Database. Since the database on the web app is large, I wish to see how I can

  • get maximum available space in the SQLite Database
  • throw an alert to the user when the space is limited

Shall appreciate if someone can help?

Shalini
  • 19
  • 4

1 Answers1

2

If you use a native SQLite DB (e.g. via cordova-sqlite-storage plugin), then the size is virtually unlimited i.e. only limited by available device storage space.

References for Android and iOS.

DaveAlden
  • 30,083
  • 11
  • 93
  • 155