I haven't been able to find whether a table exists in my DB. I open/create it with JS like this:
DEMODB = openDatabase(shortName, version, displayName, maxSize);
and then:
DEMODB.transaction(function(tx) {
tx.executeSql("SELECT COUNT(*) FROM sqlite_master WHERE type='table' and name='MyTable'", [],
function(tx, result) {
//console.log(result.rows);
cont = result.rows.length;
},
function(tx, error){
// error occured
}
);
});
cont always has 1 (if the function is executed). I also tried this:
pragma table_info('abreviations'
but I get error "missing authorization".
What am I missing?