http://doc.wex5.com/?p=3774

需要引入包require("cordova!com.brodysoft.sqlitePlugin");

//本地数据库操作

document.addEventListener("deviceready", onDeviceReady, false);

//设备就绪

function onDeviceReady() {

self.db = window.sqlitePlugin.openDatabase({

name : "device.db"

});

self.db.transaction(function(tx) {

// 如果没有就建表 id integer primary key id自增长

tx.executeSql('CREATE TABLE IF NOT EXISTS health_table ( id integer primary key,name String,xueya String,xueyang String,xinlv String,time String)');

//查询

tx.executeSql("select * from health_table where name = ?;", [self.name], function(tx, res) {

for ( var i = 0; i < res.rows.length; i++) {

var json ="{defaultValues[{'id':'"+res.rows.item(i).id+"','name':'"+res.rows.item(i).name+"','xueya':'"+res.rows.item(i).xueya+"','xueyang':'"+res.rows.item(i).xueyang+"','xinlv':'"+res.rows.item(i).xinlv+"','time':'"+res.rows.item(i).time+"'}]}";

self.comp("healthbaasData").newData(eval("("+json+")"));

}

});

});

}

//查询

self.db.transaction(function(tx) {

tx.executeSql("select * from test_table;", [], function(tx, res) {

for ( var i = 0; i < res.rows.length; i++) {

var record = res.rows.item(i).id + " " + " " + res.rows.item(i).data + " " + res.rows.item(i).data_num;

console.info("记录内容: " + record);

}

});

});

//插入

self.db.transaction(function(tx) { //插入

tx.executeSql("INSERT INTO bloodg_table (name,xuetang,time) VALUES (?,?,?)", [self.name,xuetang,time], function(tx, res) {

});

});

//删除

self.db.transaction(function(tx) {

tx.executeSql("delete from test_table where id = ? ", [delId], function(tx, res) {

console.info(res);

});

});

最新文章

  1. UWP 应用获取 Localhosts 访问权限
  2. gulp教程之gulp-imagemin
  3. 查询数据库表大小sql
  4. 【CoreData】分页查询和模糊查询
  5. B树算法与实现 (C语言实现)
  6. oc 字符串
  7. C# 字符串的截取和替换
  8. html 其它标签
  9. Raid1源代码分析--Barrier机制
  10. PHP中 post 与get的区别 详细说明
  11. spring整合mybatis错误:HTTP Status 404 - xxx-xxx....
  12. POJ - 2828
  13. PHP和Go中的闭包变量作用域
  14. oracle的高级查询
  15. Shiro学习笔记六(自定义Reaml-使用数据库设置 user roles permissions)
  16. SDL 2.0 API by Category
  17. 【BZOJ3197】[SDOI2013]刺客信条
  18. Excel_To_DataTable
  19. 如何去除Eclipse下的JS引入报错(类似Syntax error on token...的异常信息)
  20. web.xml配置文件详解

热门文章

  1. Linux如何永久打开端口
  2. springmvc文件上传 参数为MultipartFile 转换为File
  3. 利用freemarker生成word,word另存为xml文件的标签解析
  4. 把execel表数据导入mysql数据库
  5. python3笔记八:python数据类型-Number数字
  6. 后盾网lavarel视频项目---vue-axios基本用法
  7. 在K8S上跑一个helloworld
  8. 十四:jinja2过滤器之常用的过滤器
  9. cento7忘记root密码怎么办
  10. python3实现自动化框架robotframework(最新)