mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:42:54 +00:00
Merge pull request #3830 from annando/dba-pdo-connected
DBA: The "connected" check for PDO didn't work.
This commit is contained in:
commit
404ed27fb4
1 changed files with 7 additions and 2 deletions
|
@ -222,10 +222,15 @@ class dba {
|
|||
}
|
||||
|
||||
public static function connected() {
|
||||
$connected = false;
|
||||
|
||||
switch (self::$driver) {
|
||||
case 'pdo':
|
||||
// Not sure if this really is working like expected
|
||||
$connected = (self::$db->getAttribute(PDO::ATTR_CONNECTION_STATUS) != "");
|
||||
$r = dba::p("SELECT 1");
|
||||
if (dbm::is_result($r)) {
|
||||
$row = dba::inArray($r);
|
||||
$connected = ($row[0]['1'] == '1');
|
||||
}
|
||||
break;
|
||||
case 'mysqli':
|
||||
$connected = self::$db->ping();
|
||||
|
|
Loading…
Reference in a new issue