android - How to connect local sqlite database in phonegap -
i have database 1_user.db in local system , want connect through phonegap. have tried not working in case of local db
document.addeventlistener("domcontentloaded", ondeviceready, false); var db = window.opendatabase("1_user", "1.0", "just dummy db", 200000); //will create database dummy_db or open //function called when device ready function ondeviceready(){ db.transaction(populatedb, errorcb, successcb); }
Comments
Post a Comment