From: Andrew Dolgov Date: Thu, 18 Apr 2013 04:28:03 +0000 (+0400) Subject: support pgsql in pdo X-Git-Tag: 1.7.9~25^2~151 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=73663db316e5f64660cd64cca2233269c63d0661;p=tt-rss.git support pgsql in pdo --- diff --git a/classes/db/pdo.php b/classes/db/pdo.php index 3020dea8..59499139 100644 --- a/classes/db/pdo.php +++ b/classes/db/pdo.php @@ -3,10 +3,14 @@ class Db_PDO implements IDb { private $pdo; function connect($host, $user, $pass, $db, $port) { - $connstr = DB_TYPE . ":host=$host;dbname=$db;charset=utf8"; + $connstr = DB_TYPE . ":host=$host;dbname=$db"; + + if (DB_TYPE == "mysql") $connstr .= ";charset=utf8"; try { $this->pdo = new PDO($connstr, $user, $pass); + $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + $this->init(); } catch (PDOException $e) { die($e->getMessage()); } @@ -77,5 +81,20 @@ class Db_PDO implements IDb { function last_error() { return join(" ", $pdo->errorInfo()); } + + function init() { + switch (DB_TYPE) { + case "pgsql": + $this->query("set client_encoding = 'UTF-8'"); + $this->query("set datestyle = 'ISO, european'"); + $this->query("set TIME ZONE 0"); + case "mysql": + $this->query("SET time_zone = '+0:0'"); + return; + } + + return true; + } + } ?>