Я предполагаю, что вы используете пакет npm mysql
в файле readme, где вы можете найти информацию о пуле topi c.
https://www.npmjs.com/package/mysql#pooling -соединений
const mysql = require('mysql');
const pool = mysql.createPool(...);
const email = "test@example.com" // Users email address variable.
pool.getConnection(function(err, connection) {
if (err) throw err; // not connected!
// Use the connection
connection.query('SELECT * FROM users WHERE email = ?', [email], function (error, results, fields) {
// When done with the connection, release it.
connection.release();
// Handle error after the release.
if (error) throw error;
// Don't use the connection here, it has been returned to the pool.
if(!results.length) {
// No results found.
}else {
// Results found.
}
});
});
Я не проверял этот код, если у вас возникли проблемы, ознакомьтесь с документацией.