यह देखने के लिए कि क्या यह जारी किया गया था, आप जांच सकते हैं कि कनेक्शन पूल में है या नहीं। यदि कनेक्शन जारी नहीं किया जाता है तो मुफ्त कनेक्शन में सूचकांक -1 होगा। यहाँ एक उदाहरण है।
var mysql = require('mysql');
var pool = mysql.createPool({
connectionLimit : 10,
host : 'localhost',
user : 'root',
password : ''
});
pool.getConnection(function(err, connection) {
connection.query( 'SELECT something FROM sometable', function(err, rows) {
console.log(pool._freeConnections.indexOf(connection)); // -1
connection.release();
console.log(pool._freeConnections.indexOf(connection)); // 0
});
});