15:44 更新
要正常关闭数据库连接,请在connection对象上调用end()方法。
end()方法确保在数据库连接关闭之前始终执行所有剩余的查询。
connection.end(function(err) { if (err) { return console.log('error:' + err.message); } console.log('Close the database connection.'); });SQL
要立即强制连接,可以使用destroy()方法。 destroy()方法保证不会再为连接触发回调或事件。
connection.destroy();Js
请注意,destroy()方法不会像end()方法那样采取任何回调参数。