Merge pull request #978 from racklin/pgsql-schema

Added support PostgreSQL schema.
This commit is contained in:
Taylor Otwell
2012-07-19 13:34:00 -07:00
2 changed files with 8 additions and 0 deletions

View File

@@ -85,6 +85,7 @@ return array(
'password' => '',
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
),
'sqlsrv' => array(

View File

@@ -44,6 +44,13 @@ class Postgres extends Connector {
$connection->prepare("SET NAMES '{$config['charset']}'")->execute();
}
// If a schema has been specified, we'll execute a query against
// the database to set the search path.
if (isset($config['schema']))
{
$connection->prepare("SET search_path TO '{$config['schema']}'")->execute();
}
return $connection;
}