sql >> Database >  >> RDS >> Mysql

Hoe ping ik de MySQL-database en maak opnieuw verbinding met PDO

Ik probeerde een oplossing te vinden voor hetzelfde probleem en vond het volgende antwoord:

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

Het volledige verhaal hier:https://terenceyim. wordpress.com/2009/01/09/adding-ping-function-to-pdo/


Iemand anders dacht PDO::ATTR_CONNECTION_STATUS te gebruiken , maar hij ontdekte dat:"$db->getAttribute(PDO::ATTR_CONNECTION_STATUS) blijft antwoorden "Localhost via UNIX-socket", zelfs na het stoppen van mysqld".



  1. #1221 - Onjuist gebruik van UPDATE en ORDER BY

  2. PER CASE BESTELLEN in Doctrine2 (Symfony2)

  3. 500 - Er is een fout opgetreden – DB-functie meldt geen fouten bij het toevoegen van een nieuw artikel in Joomla

  4. ORA-00900:ongeldige SQL-instructie - bij het uitvoeren van een procedure in oracle 10g