Ionic Pouchdb Sqlite Plugin Issue
We are seriously exploring Ionic, PouchDb and CouchDb as a solution to one of our requirement where we need to build a mobile app which can provide offline sync functionality and a
Solution 1:
There is a demo of a Cordova app using PouchDB and the SQLite Plugin. Mostly likely you just need to make sure that SQLite Plugin <script> is loaded before the PouchDB <script>.
That said, if your app data is seriously 500MB (half a GB!), I would recommend against using PouchDB. Especially if you are not using sync, then PouchDB has too much overhead with the revision structure and will run slowly.
You are probably better off directly using the SQLite Plugin. Hope that helps!
Post a Comment for "Ionic Pouchdb Sqlite Plugin Issue"