Verplaats conn.end()
uit de query-callback - zoals beschreven in documentatie van node-mysql
:
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();