Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso eseguire il ping del db MySQL e riconnettermi tramite PDO

Ho provato a trovare una soluzione per lo stesso problema e ho trovato la risposta successiva:

class NPDO {
    private $pdo;
    private $params;

    public function __construct() {
        $this->params = func_get_args();
        $this->init();
    }

    public function __call($name, array $args) {
        return call_user_func_array(array($this->pdo, $name), $args);
    }

    // The ping() will try to reconnect once if connection lost.
    public function ping() {
        try {
            $this->pdo->query('SELECT 1');
        } catch (PDOException $e) {
            $this->init();            // Don't catch exception here, so that re-connect fail will throw exception
        }

        return true;
    }

    private function init() {
        $class = new ReflectionClass('PDO');
        $this->pdo = $class->newInstanceArgs($this->params);
    }
}

La storia completa qui:https://terenceyim. wordpress.com/2009/01/09/adding-ping-function-to-pdo/


Qualcun altro stava pensando di utilizzare PDO::ATTR_CONNECTION_STATUS , ma ha capito che:"$db->getAttribute(PDO::ATTR_CONNECTION_STATUS) continua a rispondere "Localhost tramite socket UNIX" anche dopo aver interrotto mysqld".