前言
最近由于业务需要,APP端后台需要将MongoDB中的数据同步到Java端后台的MySQL中,然后又将MySQL中算好的数据,同步到MongoDB数据库。
这个过程看是很繁琐,实际上这就是一个互相写表的过程。
接下来就看看node.js将MongoDB中的数据批量插入到MySQL数据库的实现过程。话不多说了,来一起看看详细的介绍吧。
环境
需要的模块
准备好MongoDB中的数据
实现
mongoose的Schema我这里就不写了,大家可以上网进行查看,node.js连接MongoDB和MySQL的pool看下面:
node.js连接MongoDB://www.VeVB.COm/article/98813.htm
Nodejs mysql pool使用实例:
mysql模块为felixge/node-mysql
源码如下:
/*** Created by kevalin on 2015/4/22.*/var express = require('express');var router = express.Router();var mysql = require('mysql');var conf = require('../config/dbconnection');//定义pool池var pool = mysql.createPool({host : conf.dbMysql.host,user : conf.dbMysql.user,password : conf.dbMysql.password,database : conf.dbMysql.database,port : conf.dbMysql.port});router.get('/', function(req, res) {var selectSites = "select *, date_format(do_time, '%Y-%m-%d %H:%i:%s') as time from siteinfo order by id";pool.getConnection(function(err, connection) {if (err) throw err;connection.query(selectSites, function(err, rows) {if (err) throw err;res.render('sites', {title : '站点分布', results : rows});//回收poolconnection.release();});});});module.exports = router;
下面上关键代码
思路:
先从MongoDB查询数据然后通过遍历插入MySQL中。
User.find({}, (err, user) => { if (err) res.send(err); for( let i = 0 ; i < family.length ; i ++ ) { console.log("第" + (i + 1) + "条数据"); let username = user[i].username; let email = user[i].email; let password = user[i].password; let sql = "insert into user_table(username, email, password) values ('" + username + "','" + email + "','" + password + "');"; pool.query(sql,(err, rows) => { if (err) res.send(err); res.json({ message:'数据插入成功', rows }); }); }});
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对武林网的支持。
新闻热点
疑难解答