openDatabase('mosadb, '1.0', 'Desc Database', 4 * 1024 * 1024);
On Wednesday, February 13, 2013 8:06:04 AM UTC-5,
to...@tomb.io wrote:
I am building an application using PhoneGap on Android and iOS, we're using WebSQL to persist some items. The application runs fine and persists on iOS properly, however the behaviour doesn't seem to be working on Android (4.2.1 Galaxy Nexus).
We open our database with:
window.openDatabase('name', '', 'name', size)
However between restarts of the application on Android it appears to be opening a NEW database every time. Is this expected behaviour, or am I missing something completely?