Try / catch MySQL connection
This commit is contained in:
parent
185a3f831c
commit
a816b73f66
@ -9,8 +9,12 @@ class MysqlConnector {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function connect() {
|
public function connect() {
|
||||||
$this->connection = new PDO('mysql:host='.MYSQL_HOST.';dbname='.MYSQL_DB, MYSQL_LOGIN, MYSQL_PASSWORD);
|
try {
|
||||||
$this->connection->query('SET NAMES utf8');
|
$this->connection = new PDO('mysql:host='.MYSQL_HOST.';dbname='.MYSQL_DB, MYSQL_LOGIN, MYSQL_PASSWORD);
|
||||||
|
$this->connection->query('SET NAMES utf8');
|
||||||
|
} catch (Exception $e) {
|
||||||
|
exit ('Unable to access database.');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function disconnect() {
|
public function disconnect() {
|
||||||
|
Loading…
Reference in New Issue
Block a user