मॉड्यूल के कोड को देखते हुए मुझे एक पूल से कनेक्शन जारी करने का कार्य मिला:
pool.prototype.releaseConnection = function releaseConnection(connection) {
//Use the underlying connection from the mysql-module here:
return this.pool.releaseConnection(connection.connection);
};
इसलिए यदि ये सभी फ़ंक्शन एक ही फ़ाइल में रहते हैं, तो आप getUser फ़ंक्शन में निम्न कार्य कर सकते हैं:बदलें
conn.release();
के साथ
pool.releaseConnection(conn);