async function isConnectionAlive() { try { await connection.query('SELECT 1'); return true; } catch (err) { return false; } }