Skip to content

Instantly share code, notes, and snippets.

View atulrungta's full-sized avatar

Atul Rungta atulrungta

View GitHub Profile
self.db = window.openDatabase(DB_CONFIG.name, '1.0', 'database', -1);
I replaced above line to following and it worked....
self.db = window.openDatabase(DB_CONFIG.name, '1.0', 'database', 200000);