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

Popular posts from this blog

google app engine - 403 Forbidden POST - Flask WTForms -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -

how to run a query SQL in node.js mysql -