博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sqlite3.datebase.serialize(function(){})的问题
阅读量:6294 次
发布时间:2019-06-22

本文共 754 字,大约阅读时间需要 2 分钟。

如果内部的查询函数有回调函数,还是不能同步执行的。。。。

所以大概只能执行更新、删除、新建之类的任务了。。。。

db.serialize(function() {  // These two queries will run sequentially.(同步进行、序列化、按顺序执行)  console.log(client.collector1);  console.log('\n11111111111111:');  db.all(" select eqpt_pfc from eqpt_info where eqpt_id_code='" + client.collector1 +"'" , function(err, rows){    console.log('\n1:');    console.log(rows[0]);    PFC = rows[0].eqpt_pfc;    console.log(PFC);  });  db.all(" select eqpt_baudrate , eqpt_commport , eqpt_measurecode , eqpt_rate , eqpt_zsw , eqpt_xsw , eqpt_dlh , eqpt_xlh , eqpt_yblx from eqpt_info where eqpt_id_code = '" + address +"'", function(err, rows) {    console.log('\n2:');    console.log(rows[0]);  });});

 最后还是要做嵌套查询。。。

转载于:https://www.cnblogs.com/lswit/p/4903652.html

你可能感兴趣的文章
mysql性能的检查和调优方法
查看>>
项目管理中的导向性
查看>>
Android WebView 学习
查看>>
(转)从给定的文本中,查找其中最长的重复子字符串的问题
查看>>
HDU 2159
查看>>
spring batch中用到的表
查看>>
资源文件夹res/raw和assets的使用
查看>>
UINode扩展
查看>>
LINUX常用命令
查看>>
百度云盘demo
查看>>
概率论与数理统计习题
查看>>
初学structs2,简单配置
查看>>
Laravel5.0学习--01 入门
查看>>
时间戳解读
查看>>
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>