nodejs mysql Error: Connection lost The server closed the connection

Try to use this code to handle server disconnect: var db_config = { host: ‘localhost’, user: ‘root’, password: ”, database: ‘example’ }; var connection; function handleDisconnect() { connection = mysql.createConnection(db_config); // Recreate the connection, since // the old one cannot be reused. connection.connect(function(err) { // The server is either down if(err) { // or restarting … Read more