DB IO postgresql: supress warning on connection failure
This commit is contained in:
@@ -536,7 +536,7 @@ class PgSQL implements Interface\SqlFunctions
|
|||||||
$connection_string[] = 'sslmode=' . $db_ssl;
|
$connection_string[] = 'sslmode=' . $db_ssl;
|
||||||
}
|
}
|
||||||
// connect
|
// connect
|
||||||
$this->dbh = pg_connect(join(' ', $connection_string));
|
$this->dbh = @pg_connect(join(' ', $connection_string));
|
||||||
return $this->dbh;
|
return $this->dbh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user