Test if PDO doesn't work on the tests

This commit is contained in:
Michael 2020-11-07 10:27:22 +00:00
parent 84924d1c05
commit 8906615b2c
1 changed files with 7 additions and 7 deletions

View File

@ -385,15 +385,15 @@ class Database
switch ($this->driver) {
case self::PDO:
$r = $this->p("SELECT 1");
if ($this->isResult($r)) {
$row = $this->toArray($r);
$connected = ($row[0]['1'] == '1');
}
$connected = true;
// $r = $this->p("SELECT 1");
// if ($this->isResult($r)) {
// $row = $this->toArray($r);
// $connected = ($row[0]['1'] == '1');
// }
break;
case self::MYSQLI:
$connected = true;
// $connected = $this->connection->ping();
$connected = $this->connection->ping();
break;
}