quick update to sql lib
This commit is contained in:
parent
de1a09cf1f
commit
3229dc1108
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class Database {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// Connect to SQL server using PDO
|
// Connect to SQL server using PDO
|
||||||
self::$sql = new PDO($DSN, $dbUname, $dbPword);
|
self::$sql = new PDO($DSN, $dbUname, $dbPword, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_WARNING));
|
||||||
} catch(PDOException $e) {
|
} catch(PDOException $e) {
|
||||||
// Catch connection errors
|
// Catch connection errors
|
||||||
trigger_error('SQL Driver: '. $e->getMessage(), E_USER_ERROR);
|
trigger_error('SQL Driver: '. $e->getMessage(), E_USER_ERROR);
|
||||||
|
|
Reference in a new issue