Merge pull request #7 from kamil0/patch-2

Removed kebab from the water supply
This commit is contained in:
flash 2015-06-21 01:06:31 +02:00
commit d57fa54f18

View file

@ -71,7 +71,7 @@ class MySQL {
try {
// Connect to SQL server using PDO
$this->sql = new PDO($DSN, $dbUname, $dbPword, array(PDO::ATTR_ERRMODE => PDO::ERRMODE_WARNING));
$this->sql = new PDO($DSN, $dbUname, $dbPword, array(PDO::ATTR_EMULATE_PREPARES => false, PDO::ATTR_ERRMODE => PDO::ERRMODE_WARNING));
} catch(PDOException $e) {
// Catch connection errors
trigger_error('SQL Driver: '. $e->getMessage(), E_USER_ERROR);