mysql 模块的使用封装
npm install mill-mysql --save
let millMysql = require("mill-mysql");
millMysql.init({password:'123'});
millMysql.query('select * from ?? where ?? = ?' ,["st_question",'t_type',1],r=>console.log(r));
millMysql.close();
var options = {
connectionLimit : 10,
host : 'localhost',
user : 'root',
password : '',
database : 'test'
};