I am trying to create html5 + sql database in my iOS application. I am using following syntax.
var db = window.openDatabase("test", "1.0", "Test DB", 5 * 1024 * 1024);
Getting db object here . But just want to know at which physical location this database is creating? is it local storage or somewhere in document directory ?