1 Star 0 Fork 6

SteadyHua/blog

forked from LingMX/blog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pool.js 304 Bytes
一键复制 编辑 原始数据 按行查看 历史
LingMX 提交于 2019-02-20 19:55 . Create blog
//创建连接池
const mysql=require('mysql');
//建立数据库连接
var pool=mysql.createPool({
host:'127.0.0.1',
port:'3306',
user:'root',
password:'',
database:'lmx',
connectionLimit:20,
multipleStatements: true //允许执行多条SQL语句
});
//导出连接池对象
module.exports=pool;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/Murderers/blog.git
git@gitee.com:Murderers/blog.git
Murderers
blog
blog
master

搜索帮助