ले जाएँ conn.end()
क्वेरी कॉलबैक से बाहर - जैसा कि node-mysql's documentation
में वर्णित है। :
connection.connect();
connection.query('SELECT 1 + 1 AS solution', function(err, rows, fields) {
if (err) throw err;
console.log('The solution is: ', rows[0].solution);
});
connection.end();