diff --git a/include/dba.php b/include/dba.php index 847d1f0b5f..6e399e5de4 100644 --- a/include/dba.php +++ b/include/dba.php @@ -76,8 +76,9 @@ class dba { } try { self::$db = @new PDO($connect, $user, $pass); - self::$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); - self::$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false); + // Needs more testing + //self::$db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); + //self::$db->setAttribute(PDO::ATTR_STRINGIFY_FETCHES, false); self::$connected = true; } catch (PDOException $e) { }