Hi, i try to use PhoneGap in a Javascript file. From Create new JavaScritp i create a file and put this code: function openDB() { var db = window.openDatabase("TestDB", "1.0", "TestDB", 1024 * 1000); db.transaction(initDB, errorCB, successCB); } function initDB(tx) { tx...