Merge pull request #3830 from annando/dba-pdo-connected

DBA: The "connected" check for PDO didn't work.
This commit is contained in:
Tobias Diekershoff 2017-10-29 08:11:27 +01:00 committed by GitHub
commit 404ed27fb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -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();