Query/src/Query/Drivers/Pgsql/Driver.php

98 lines
1.9 KiB
PHP
Raw Normal View History

2012-04-10 14:06:34 -04:00
<?php
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
2012-04-10 14:06:34 -04:00
*
2016-09-07 13:17:17 -04:00
* PHP version 5.4
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2012 - 2015 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat4ion/Query
2012-04-10 14:06:34 -04:00
*/
namespace Query\Drivers\Pgsql;
2014-04-02 17:08:50 -04:00
2016-09-07 17:39:19 -04:00
use Query\Drivers\AbstractDriver;
2012-04-10 14:06:34 -04:00
/**
2016-09-07 17:39:19 -04:00
* PostgreSQL specific class
2012-04-10 14:06:34 -04:00
*
2012-04-20 13:17:39 -04:00
* @package Query
* @subpackage Drivers
2012-04-10 14:06:34 -04:00
*/
2016-09-07 17:39:19 -04:00
class Driver extends AbstractDriver {
2012-04-10 14:06:34 -04:00
/**
* Connect to a PosgreSQL database
*
* @codeCoverageIgnore
2012-04-10 14:06:34 -04:00
* @param string $dsn
* @param string $username
* @param string $password
* @param array $options
2012-04-10 14:06:34 -04:00
*/
2016-09-07 13:10:03 -04:00
public function __construct($dsn, $username=NULL, $password=NULL, array $options=[])
2012-04-10 14:06:34 -04:00
{
2015-11-11 09:25:21 -05:00
if (strpos($dsn, 'pgsql') === FALSE)
{
$dsn = 'pgsql:'.$dsn;
}
parent::__construct($dsn, $username, $password, $options);
2012-04-10 14:06:34 -04:00
}
// --------------------------------------------------------------------------
/**
* Get a list of schemas for the current connection
*
* @return array
*/
public function get_schemas()
{
$sql = <<<SQL
SELECT DISTINCT "schemaname" FROM "pg_tables"
WHERE "schemaname" NOT LIKE 'pg\_%'
AND "schemaname" != 'information_schema'
SQL;
return $this->driver_query($sql);
}
// --------------------------------------------------------------------------
/**
* Retrieve foreign keys for the table
*
* @param string $table
* @return array
*/
public function get_fks($table)
{
2016-09-07 13:10:03 -04:00
$value_map = [
'c' => 'CASCADE',
'r' => 'RESTRICT',
2016-09-07 13:10:03 -04:00
];
$keys = parent::get_fks($table);
foreach($keys as &$key)
{
2016-09-07 13:10:03 -04:00
foreach(['update', 'delete'] AS $type)
{
2015-11-11 09:25:21 -05:00
if ( ! isset($value_map[$key[$type]]))
{
continue;
}
$key[$type] = $value_map[$key[$type]];
}
}
return $keys;
}
2012-04-10 14:06:34 -04:00
}
2014-02-14 10:38:25 -05:00
//End of pgsql_driver.php