szurubooru/src/DatabaseConnection.php
2014-11-09 17:38:58 +01:00

49 lines
842 B
PHP

<?php
namespace Szurubooru;
use Szurubooru\Config;
use Szurubooru\PDOEx\PDOEx;
class DatabaseConnection
{
private $pdo;
private $config;
public function __construct(Config $config)
{
$this->config = $config;
}
public function getPDO()
{
if (!$this->pdo)
{
$this->createPDO();
}
return $this->pdo;
}
public function getDriver()
{
return $this->getPDO()->getAttribute(\PDO::ATTR_DRIVER_NAME);
}
public function close()
{
$this->pdo = null;
}
private function createPDO()
{
$cwd = getcwd();
if ($this->config->getDataDirectory())
chdir($this->config->getDataDirectory());
$this->pdo = new PDOEx(
$this->config->database->dsn,
$this->config->database->user,
$this->config->database->password);
$this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
chdir($cwd);
}
}