码迷,mamicode.com
首页 > 数据库 > 详细

html5_websql

时间:2016-05-16 14:19:21      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

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);});

html5_websql

标签:

原文地址:http://www.cnblogs.com/shidengyun/p/5497823.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!