连接池
Posted 110162-wsx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了连接池相关的知识,希望对你有一定的参考价值。
const mysql = require(‘mysql‘);
const pool = mysql.createPool({
port: 3306,
user: ‘root‘,
password: ‘root‘,
database: ‘people‘
})
const query = (sql, arr, cb) => {
pool.getConnection((err, con) => {
if (err) {
return cb && cb(err);
}
con.query(sql, arr, (err, result) => {
if (err) {
return cb && cb(err);
}
cb && cb(null, result);
con.release();
})
})
}
module.exports = query;
以上是关于连接池的主要内容,如果未能解决你的问题,请参考以下文章