2016-03-19 11 views

Antwort

1

bitte versuchen Sie es wie

mydb.transaction(function (t) { 
    t.executeSql("SELECT COUNT(*) as count FROM offline", [], function (tx, results) { 
     alert(results.rows[0].count}); 
    } 
}); 
+1

Vielen Dank :) –