HTML 5 本地数据库行数

HTML 5 Local Database Row Count

HTML 本地数据库如何进行行替换?

EX

mydb.transaction(function (t) {
            t.executeSql("SELECT COUNT(*) FROM offline", outputCars);    
         alert(t);
     });

但它不起作用。

谢谢!

喜欢就试试吧

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