I am a new bid in HTML5 please help me with this
I am creating a local DB via HTML% apis on client machine like this
function initDB(){
var shortName = 'stuffDB';
var version = '1.0';
var displayName = 'MyStuffDB';
var maxSize = 65536; // in bytes
localDB = window.openDatabase(shortName, version, displayName, maxSize);
}
Is it possible to get the location of the DB created like alert ("path of db is " + dbPath);
Thanks in advance Ankit