Nhìn vào mã của mô-đun, tôi tìm thấy chức năng giải phóng kết nối từ một nhóm:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
Vì vậy, nếu tất cả các hàm này nằm trong cùng một tệp, bạn có thể thực hiện như sau trong hàm getUser:thay thế
conn.release();
với
pool.releaseConnection(conn);