zoukankan      html  css  js  c++  java
  • html5_websql

    var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
     var msg;
     db.transaction(function (tx) {
        tx.executeSql('CREATE TABLE IF NOT EXISTS LOGS (id unique, log)');
        tx.executeSql('INSERT INTO LOGS (id, log) VALUES (1, "foobar")');
        tx.executeSql('INSERT INTO LOGS (id, log) VALUES (2, "logmsg")');
        msg = '<p>Log message created and row inserted.</p>';
      console.log(msg);
     });
     db.transaction(function (tx) {
        tx.executeSql('SELECT * FROM LOGS', [], function (tx, results) {
        var len = results.rows.length, i;
         msg = "<p>Found rows: " + len + "</p>";
         console.log(msg);
        for (i = 0; i < len; i++){
           msg = "<p><b>" + results.rows.item(i).log + "</b></p>";
           console.log(msg);
         }
     }, null);});
  • 相关阅读:
    2012第50周星期日
    2012第51周星期一
    2012第51周星期三
    2012第51周六
    2012第52周一
    2012第51周五冬至
    2012第51周星期二
    2012第52周二
    2012年第51周日
    2012第51周星期四
  • 原文地址:https://www.cnblogs.com/shidengyun/p/5497823.html
Copyright © 2011-2022 走看看