mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Mask database connection error
This commit is contained in:
parent
6bd1563f9b
commit
4e4052a3df
1 changed files with 6 additions and 5 deletions
|
@ -65,21 +65,22 @@ class DBLayer {
|
||||||
} else {
|
} else {
|
||||||
$dsn = "mysql:";
|
$dsn = "mysql:";
|
||||||
$dsn .= "host=" . $cfg['db'][$db]['host'] . ";";
|
$dsn .= "host=" . $cfg['db'][$db]['host'] . ";";
|
||||||
$dsn .= "dbname=" . $cfg['db'][$db]['name'] . ";"; // Comment this out when using the cache
|
// $dsn .= "dbname=" . $cfg['db'][$db]['name'] . ";"; // Comment this out when using the cache
|
||||||
$dsn .= "port=" . $cfg['db'][$db]['port'] . ";";
|
$dsn .= "port=" . $cfg['db'][$db]['port'] . ";";
|
||||||
|
|
||||||
$opt = array(
|
$opt = array(
|
||||||
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
||||||
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
|
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
|
||||||
PDO::ATTR_PERSISTENT => true,
|
// PDO::ATTR_PERSISTENT => true,
|
||||||
PDO::ATTR_TIMEOUT => 5
|
PDO::ATTR_TIMEOUT => 5
|
||||||
);
|
);
|
||||||
$PDOCache[$this->host] = array();
|
$PDOCache[$this->host] = array();
|
||||||
try {
|
try {
|
||||||
$this->PDO = new PDO($dsn, $cfg['db'][$db]['user'], $cfg['db'][$db]['pass'], $opt);
|
$this->PDO = new PDO($dsn, $cfg['db'][$db]['user'], $cfg['db'][$db]['pass'], $opt);
|
||||||
} catch (Exception $e) {
|
} catch (PDOException $e) {
|
||||||
$PDOCache[$this->host]['exception'] = $e;
|
$exception = new PDOException("Failed to connect to the '" . $db . "' database server", $e->getCode());
|
||||||
throw $e;
|
$PDOCache[$this->host]['exception'] = $exception;
|
||||||
|
throw $exception;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$PDOCache[$this->host]['pdo'] = $this->PDO;
|
$PDOCache[$this->host]['pdo'] = $this->PDO;
|
||||||
|
|
Loading…
Reference in a new issue