mysql模块简单实用操作-----nodejs
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql模块简单实用操作-----nodejs相关的知识,希望对你有一定的参考价值。
1 //mysql模块简单实用操作 2 3 var mysql = require(‘mysql‘); 4 5 mc = {}; 6 7 8 var dbconfig = { 9 host : ‘xxxxxxxxxx‘, 10 user : ‘xxx‘, 11 password : ‘xxx‘, 12 database : ‘xxxxx‘ 13 }; 14 15 16 17 mc.sqlExc = function (sql, next) { 18 var db = mysql.createConnection(dbconfig); 19 db.connect(); 20 db.query(sql, function (err, rows) { 21 if (err) { 22 return next(err) 23 } 24 db.end(); 25 next(null, rows); 26 }); 27 28 } 29 module.exports = mc;
以上是关于mysql模块简单实用操作-----nodejs的主要内容,如果未能解决你的问题,请参考以下文章