I'm trying to create an application that works on any mobile device, but doesn't require internet. I want to have an Sqlite database that I can query. I found a script, but it creates a WebSQL database in the browser. I want to query the flatfile. Is that even possible?
Here is my code:
function createDatabase() {
try{
if (window.openDatabase) {
var db;
var shortName = 'configurator.sqlite';
var version = '1.0';
var displayName = 'configurator';
var maxSize = 65335;
db = openDatabase(shortName, version, displayName, maxSize);
} else {
console.log('failure');
}
} catch(e) {
alert(e);
}
}