mirror of
https://github.com/friendica/friendica
synced 2024-11-19 14:23:42 +00:00
Test if PDO doesn't work on the tests
This commit is contained in:
parent
84924d1c05
commit
8906615b2c
1 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue