Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment puis-je envoyer un ping à la base de données MySQL et me reconnecter à l'aide de PDO

J'ai essayé de trouver une solution au même problème et j'ai trouvé la réponse suivante :

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);
    }
}

Article complet ici :https://terenceyim. wordpress.com/2009/01/09/adding-ping-function-to-pdo/


Quelqu'un d'autre pensait utiliser PDO::ATTR_CONNECTION_STATUS , mais il a compris que :"$db->getAttribute(PDO::ATTR_CONNECTION_STATUS) continue de répondre "Localhost via UNIX socket" même après l'arrêt de mysqld".