I can create sqlite DB in phonegap / html5 via window.openDatabase . I will have a large amount of data, so I want to send it using the application.
So, I can store sqlite DB somewhere in the application (it should work on both iOS and Android). In particular, where is shortName.db stored when I call
var db = openDatabase(shortName, version, displayName, maxSize);
And can I pre-populate this sqlite file. (In a telephone conversation environment)
agiliq
source share