2012-04-10 14:06:34 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2014-01-02 12:36:50 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
2012-04-10 14:06:34 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PostgreSQL specifc class
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @subpackage Drivers
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
2012-04-20 13:17:39 -04:00
|
|
|
class PgSQL extends DB_PDO {
|
2012-04-10 14:06:34 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Connect to a PosgreSQL database
|
|
|
|
*
|
|
|
|
* @param string $dsn
|
2012-04-19 11:42:50 -04:00
|
|
|
* @param string $username
|
|
|
|
* @param string $password
|
|
|
|
* @param array $options
|
2012-04-10 14:06:34 -04:00
|
|
|
*/
|
|
|
|
public function __construct($dsn, $username=null, $password=null, $options=array())
|
|
|
|
{
|
2012-07-05 14:19:49 -04:00
|
|
|
if (strpos($dsn, 'pgsql') === FALSE)
|
|
|
|
{
|
|
|
|
$dsn = 'pgsql:'.$dsn;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent::__construct($dsn, $username, $password, $options);
|
2012-04-10 14:06:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
|
|
|
public function truncate($table)
|
|
|
|
{
|
|
|
|
$sql = 'TRUNCATE "' . $table . '"';
|
|
|
|
$this->query($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
}
|
2014-01-02 12:36:50 -05:00
|
|
|
//End of pgsql_driver.php
|