Edit: move to getting help forum by support-octavio
Hello,
sorry I haven’t a good english, i hope then understand me. I would like to know how to close a database connection. This is the function for open a db connection
function ApriDb()
{
if (window.openDatabase)
{
db = openDatabase(“nome database”, “1.0”, “descrizione”, 400000);
if (!db)
alert(“Impossibile aprire il database del dispositivo.”);
}
else
alert(“Impossibile accedere al database.”);
}
for close this connection there is an instruction as
“closeDatabase” or “db.close();” ?