首页 > 代码库 > JS html5 操作SQLite
JS html5 操作SQLite
//执行查询 $("#btnSQL").tap(function(){ <span style="white-space:pre"> </span>var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024); db.transaction(function (tx) { <span style="white-space:pre"> </span>tx.executeSql('CREATE TABLE IF NOT EXISTS testHtml (id unique, contentText)'); <span style="white-space:pre"> </span>tx.executeSql('INSERT INTO testHtml (contentText) VALUES ("insert data test1!")'); }); <span style="white-space:pre"> </span>db.transaction(function(tx){ tx.executeSql('SELECT * FROM testHtml',[],function(tx,result){ <span style="white-space:pre"> </span>var len=result.rows.length; <span style="white-space:pre"> </span>app.alert(len); <span style="white-space:pre"> </span>var str=result.rows.item(0); <span style="white-space:pre"> </span>app.alert(str.contentText); <span style="white-space:pre"> </span>},null); <span style="white-space:pre"> </span>}); });
JS html5 操作SQLite
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。