this.db = window.openDatabase(‘hnjz’, ‘1.0’, ‘Test DB’,210241024);
此方法可以用于控制事务处理,执行提交操作或回滚操作。
this.db.transaction(function (tx) {
})
此方法用于执行sql语句
this.db.transaction(function (tx) {
var tab = 'CREATE TABLE IF NOT EXISTS transaction_record (data_json)';
tx.executeSql(tab,[],function (trans, res) {
alert('创建表成功');
console.log(trans,res)
},function (trans, error) {//消息的回调函数
alert('创建表失败:' + error.message);
});
})
var app = {
db:null,
json_data:[{
"交易账卡号": "62226***6497477",
"交易账号": "6222620***497477",
"交易户名": "吴*红",
"交易证件号码": "44142519****0092X",
"交易日期": "2018-05-25 14:31:43",
"交易金额": "558540",
"交易余额": "754858",
"收付标志": "进",
"对手账号": "6222621***867569",
"对手卡号": "",
"现金标志": "其他",
"对手户名": "吴*玲",
"对手身份证号": "",
"对手开户银行": "01443999999",
"摘要说明": "",
"交易币种": "CNY",
"交易网点名称": "业务处理中心",
"交易场所": "",
"交易发生地": "",
"交易是否成功": "成功",
"传票号": "",
"IP地址": "",
"MAC地址": "",
"对手交易余额": "",
"交易流水号": "EFC0002016123899",
"对手余额": "",
"渠道": "",
"日志号": "",
"凭证种类": "",
"凭证号": "",
"交易柜员号": "EFC0002",
"备注": "个人网银"
}, {
"交易账卡号": "6222620****6497477",
"交易账号": "62226207****6497477",
"交易户名": "吴*红",
"交易证件号码": "44142519****10092X",
"交易日期": "2018-05-25 16:45:39",
"交易金额": "172125",
"交易余额": "582733",
"收付标志": "出",
"对手账号": "62122****33266",
"对手卡号": "",
"现金标志": "其他",
"对手户名": "唐*",
"对手身份证号": "",
"对手开户银行": "102100004951",
"摘要说明": "",
"交易币种": "CNY",
"交易网点名称": "交通银行中山分行营业部",
"交易场所": "",
"交易发生地": "",
"交易是否成功": "成功",
"传票号": "",
"IP地址": "",
"MAC地址": "",
"对手交易余额": "",
"交易流水号": "EDK0001021292336",
"对手余额": "",
"渠道": "",
"日志号": "",
"凭证种类": "",
"凭证号": "",
"交易柜员号": "EDK0001",
"备注": "个人网银"
}],
//创建数据库初始化
initSql:function(){
this.db = window.openDatabase('hnjz', '1.0', 'Test DB',2*1024*1024);
alert(this.db ? "数据库创建成功" : "数据库创建失败");
},
//创建表
createSql:function(){
if(!this.db){
alert('先创建库');
return
}
this.db.transaction(function (tx) {
//创建表和字段创建transaction_record表和相应data_json字段主键ID自动创建
var tab = 'CREATE TABLE IF NOT EXISTS transaction_record (data_json)';
tx.executeSql(tab,[],function (trans, res) {
alert('创建表成功');
console.log(trans,res)
},function (trans, error) {//消息的回调函数
alert('创建表失败:' + error.message);
});
})
},
/导入数据
readSql:function(){
if(!this.db){
alert('先创建库');
return
}
var tempResult = this.json_data;
for ( var i = 0; i " + json['transactionAccountCard'] + " " +json['transactionAccountName'] + " " +json['transactionAccountCardNum'] + " ";
}
}
html+="";
document.getElementById("tabe").innerHTML = html;
})
})
}
}