1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
tools/utils/dbPoolUtils.js

141 lines
4.7 KiB
JavaScript
Raw Permalink Normal View History

2022-09-30 00:51:08 +08:00
const mysql = require('mysql');
const fs = require('fs');
const path = require('path');
let globalConfig = JSON.parse(fs.readFileSync(path.join(__dirname, '../config.json'), 'utf8'));
let pool = null;
2022-10-01 19:45:49 +08:00
function create({ database, connectionLimit = 10 }) {
2022-09-30 00:51:08 +08:00
let config = {
2022-10-01 19:45:49 +08:00
connectionLimit: connectionLimit, //连接数量默认是10
2022-10-05 11:41:30 +08:00
...globalConfig[global.dbConfig || 'mysql'],
2022-09-30 00:51:08 +08:00
database: database,
};
2022-09-30 08:06:14 +08:00
// console.log(config);
2022-09-30 00:51:08 +08:00
//创建数据库连接池
pool = mysql.createPool(config);
// //从连接池中获取连接时,将触发该事件
// pool.on('acquire', function (conn) {
// console.log('获取连接', conn.threadId);
// });
2022-10-01 19:45:49 +08:00
//在连接池中建立新连接时,将触发该事件
pool.on('connection', function (conn) {
console.log('建立新连接', conn.threadId);
});
2022-09-30 00:51:08 +08:00
// //等待可用连接时,将触发该事件
// pool.on('enqueue', function () {
// console.log('等待可用连接');
// });
// //当连接释放回池中时,触发该事件
// pool.on('release', function (conn) {
// console.log('连接被释放回池中', conn.threadId);
// });
}
2022-09-30 08:06:14 +08:00
async function query(sql, params) {
2022-09-30 00:51:08 +08:00
return await new Promise(function (resolve, reject) {
2022-10-01 19:45:49 +08:00
if (!pool) {
console.error('Database connection pool is not initialized yet.');
resolve(data);
return;
}
// pool.query()方法可以自动的帮我们在连接池中获取可用连接
2022-09-30 08:06:14 +08:00
pool.query(sql, params, function (err, data) {
2022-09-30 00:51:08 +08:00
if (err) reject(err);
resolve(data);
});
2022-10-01 19:45:49 +08:00
// // 当然我们也可以手动获取可用连接
2022-09-30 00:51:08 +08:00
// pool.getConnection(function (err, conn) {
2022-10-01 19:45:49 +08:00
// if (err) reject(err);
// conn.query(sql, function (err, data) {
// if (err) reject(err);
// resolve(data);
// // 连接用完之后,需要释放,重新放回连接池中。
// // 注意这里并没有销毁该连接,该连接仍然可用,但需要重新获取
2022-09-30 00:51:08 +08:00
// conn.release();
// });
// });
});
}
// // sqlParamsEntities = { sql: "", params: [], callback: function(可选) }
// async function transaction(sqlParamsEntities) {
// let connection;
// try {
// connection = await new Promise((resolve, reject) => {
// pool.getConnection(function (err, connection) {
// if (err) {
// reject(err);
// }
// resolve(connection);
// });
// });
// } catch (err) {
// console.error("获取事务connection失败", err);
// return;
// }
// try {
// return await new Promise((resolve, reject) => {
// // 开启事务
// connection.beginTransaction(function (err) {
// if (err) {
// reject(err);
// }
// // 开始执行SQL语句
// console.log("开始执行transaction共执行" + sqlParamsEntities.length + "条数据");
// sqlParamsEntities.forEach((entity) => {
// console.log(entity.sql);
// connection.query(entity.sql, entity.param, function (tErr, data) {
// if (tErr) {
// reject(tErr);
// }
// if (typeof entity.callback === 'function')
// return entity.callback(data);
// })
// });
// // 执行完毕,提交事务
// connection.commit(function (tErr, info) {
// console.log("transaction info: " + JSON.stringify(info));
// if (tErr) {
// reject(tErr);
// }
// resolve(info);
// })
// });
// });
// } catch (err) {
// console.error("事务执行失败,开始回滚", err);
// connection.rollback(function () {
// console.log("transaction error: " + err);
// });
// } finally {
// connection.release();
// }
// }
2022-10-25 20:19:03 +08:00
2022-10-01 19:45:49 +08:00
async function close() {
await new Promise((resolve, reject) => {
if (!pool) return;
pool.end(function (err) {
console.log('关闭连接池', err);
resolve(err);
});
2022-09-30 00:51:08 +08:00
});
}
module.exports = {
2022-10-25 20:19:03 +08:00
create,
query,
// transaction,
2022-10-25 20:19:03 +08:00
close,
2022-09-30 00:51:08 +08:00
}