2012-01-26 16:09:05 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* OpenSQLManager
|
|
|
|
*
|
|
|
|
* Free Database manager for Open Source Databases
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
2012-04-02 10:23:27 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-01-26 16:09:05 -05:00
|
|
|
*/
|
2012-01-30 07:57:17 -05:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PostgreSQL specifc class
|
|
|
|
*
|
|
|
|
* @extends DB_PDO
|
|
|
|
*/
|
|
|
|
class pgSQL extends DB_PDO {
|
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
/**
|
|
|
|
* Connect to a PosgreSQL database
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-02 17:43:09 -05:00
|
|
|
* @param string $dsn
|
|
|
|
* @param string $username=null
|
|
|
|
* @param string $password=null
|
|
|
|
* @param array $options=array()
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function __construct($dsn, $username=null, $password=null, $options=array())
|
2012-01-30 07:57:17 -05:00
|
|
|
{
|
2012-02-01 16:36:55 -05:00
|
|
|
parent::__construct("pgsql:$dsn", $username, $password, $options);
|
2012-02-10 13:13:19 -05:00
|
|
|
|
|
|
|
//Get db manip class
|
2012-02-29 14:36:42 -05:00
|
|
|
$class = __CLASS__.'_sql';
|
|
|
|
$this->sql = new $class;
|
2012-01-30 07:57:17 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-01-26 16:09:05 -05:00
|
|
|
|
2012-04-09 15:24:10 -04:00
|
|
|
/**
|
|
|
|
* Connect to a different database
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
*/
|
|
|
|
public function switch_db($name)
|
|
|
|
{
|
|
|
|
// @todo Implement
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-01-30 14:03:16 -05:00
|
|
|
/**
|
|
|
|
* Empty a table
|
|
|
|
*
|
|
|
|
* @param string $table
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function truncate($table)
|
2012-01-30 14:03:16 -05:00
|
|
|
{
|
2012-02-02 17:43:09 -05:00
|
|
|
$sql = 'TRUNCATE "' . $table . '"';
|
2012-04-02 10:23:27 -04:00
|
|
|
$this->query($sql);
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
2012-04-02 10:23:27 -04:00
|
|
|
|
2012-02-28 16:02:37 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2012-02-02 17:43:09 -05:00
|
|
|
|
2012-02-06 16:56:16 -05:00
|
|
|
/**
|
|
|
|
* Return the number of rows returned for a SELECT query
|
2012-04-02 10:23:27 -04:00
|
|
|
*
|
2012-02-06 16:56:16 -05:00
|
|
|
* @return int
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function num_rows()
|
2012-02-06 16:56:16 -05:00
|
|
|
{
|
2012-02-13 10:53:12 -05:00
|
|
|
return (isset($this->statement)) ? $this->statement->rowCount : FALSE;
|
2012-02-06 16:56:16 -05:00
|
|
|
}
|
2012-04-10 10:47:37 -04:00
|
|
|
|
2012-04-10 08:04:38 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 10:47:37 -04:00
|
|
|
|
2012-04-10 08:04:38 -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);
|
|
|
|
}
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
2012-04-09 15:41:48 -04:00
|
|
|
//End of pgsql_driver.php
|