43 lines
958 B
PHP
43 lines
958 B
PHP
<?php
|
|
|
|
namespace Doctrine\DBAL\Driver\PDOPgSql;
|
|
|
|
use Doctrine\DBAL\Platforms;
|
|
|
|
/**
|
|
* Driver that connects through pdo_pgsql.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
class Driver implements \Doctrine\DBAL\Driver
|
|
{
|
|
public function connect(array $params, $username = null, $password = null, array $driverOptions = array())
|
|
{
|
|
return new \Doctrine\DBAL\Driver\PDOConnection(
|
|
$this->_constructPdoDsn($params),
|
|
$username,
|
|
$password,
|
|
$driverOptions
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Constructs the Postgres PDO DSN.
|
|
*
|
|
* @return string The DSN.
|
|
*/
|
|
private function _constructPdoDsn(array $params)
|
|
{
|
|
//TODO
|
|
}
|
|
|
|
public function getDatabasePlatform()
|
|
{
|
|
return new \Doctrine\DBAL\Platforms\PostgreSqlPlatform();
|
|
}
|
|
|
|
public function getSchemaManager(\Doctrine\DBAL\Connection $conn)
|
|
{
|
|
return new \Doctrine\DBAL\Schema\PostgreSqlSchemaManager($conn);
|
|
}
|
|
} |