OpenSQLManager/sys/db/drivers/pgsql/pgsql.php

284 lines
5.9 KiB
PHP
Raw Normal View History

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 {
/**
* Connect to a PosgreSQL database
2012-04-02 10:23:27 -04: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
{
parent::__construct("pgsql:$dsn", $username, $password, $options);
//Get db manip class
$class = __CLASS__.'_sql';
$this->sql = new $class;
2012-01-30 07:57:17 -05:00
}
2012-04-02 10:23:27 -04: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;
}
// --------------------------------------------------------------------------
/**
* Empty a table
*
* @param string $table
*/
2012-02-21 11:45:42 -05:00
public function truncate($table)
{
$sql = 'TRUNCATE "' . $table . '"';
2012-04-02 10:23:27 -04:00
$this->query($sql);
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
/**
* Get list of databases for the current connection
2012-04-02 10:23:27 -04:00
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_dbs()
{
2012-02-13 13:29:31 -05:00
$sql = <<<SQL
2012-04-02 10:23:27 -04:00
SELECT "datname" FROM "pg_database"
WHERE "datname" NOT IN ('template0','template1')
ORDER BY "datname" ASC
SQL;
2012-02-13 13:29:31 -05:00
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'datname');
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
/**
2012-02-02 19:07:26 -05:00
* Get the list of tables for the current db
2012-04-02 10:23:27 -04:00
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_tables()
{
2012-02-13 14:16:29 -05:00
$sql = <<<SQL
2012-04-02 10:23:27 -04:00
SELECT "tablename" FROM "pg_tables"
WHERE "tablename" NOT LIKE 'pg_%'
AND "tablename" NOT LIKE 'sql_%'
ORDER BY "tablename" ASC
2012-02-13 14:16:29 -05:00
SQL;
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'tablename');
2012-04-02 10:23:27 -04:00
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
/**
* Get the list of system tables
2012-04-02 10:23:27 -04:00
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_system_tables()
{
2012-02-13 14:16:29 -05:00
$sql = <<<SQL
SELECT "tablename" FROM "pg_tables"
WHERE "tablename" LIKE 'pg\_%'
OR "tablename" LIKE 'sql\%'
SQL;
2012-04-02 10:23:27 -04:00
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'tablename');
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
/**
* Get a list of schemas, either for the current connection, or
* for the current datbase, if specified.
2012-04-02 10:23:27 -04:00
*
* @return array
*/
public function get_schemas()
{
2012-04-09 08:57:01 -04:00
$sql = <<<SQL
SELECT DISTINCT "schemaname" FROM "pg_tables"
WHERE "schemaname" NOT LIKE 'pg\_%'
AND "schemaname" != 'information_schema'
SQL;
$res = $this->query($sql);
$schemas = $res->fetchAll(PDO::FETCH_ASSOC);
return db_filter($schemas, 'schemaname');
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
/**
2012-02-02 19:07:26 -05:00
* Get a list of views for the current db
2012-04-02 10:23:27 -04:00
*
* @return array
*/
2012-02-21 11:45:42 -05:00
public function get_views()
{
2012-02-13 14:16:29 -05:00
$sql = <<<SQL
2012-04-02 10:23:27 -04:00
SELECT "viewname" FROM "pg_views"
2012-04-06 16:10:16 -04:00
WHERE "schemaname" NOT IN
('pg_catalog', 'information_schema')
AND "viewname" !~ '^pg_'
ORDER BY "viewname" ASC
2012-02-13 14:16:29 -05:00
SQL;
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'viewname');
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
2012-04-06 16:10:16 -04:00
/**
* Get a list of sequences for the current db
*
* @return array
*/
public function get_sequences()
{
$sql = <<<SQL
SELECT "c"."relname"
FROM "pg_class" "c"
WHERE "c"."relkind" = 'S'
ORDER BY "relname" ASC
2012-04-06 16:10:16 -04:00
SQL;
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'relname');
}
// --------------------------------------------------------------------------
2012-04-06 19:22:52 -04:00
/**
* Return list of custom functions for the current database
*
* @return array
*/
public function get_functions()
{
// @todo Implement
return FALSE;
}
// --------------------------------------------------------------------------
2012-04-06 21:07:49 -04:00
/**
* Retrun list of stored procedures for the current database
*
* @return array
*/
public function get_procedures()
{
$sql = <<<SQL
SELECT "routine_name"
FROM "information_schema"."routines"
WHERE "specific_schema" NOT IN
('pg_catalog', 'information_schema')
AND "type_udt_name" != 'trigger';
SQL;
2012-04-09 13:27:12 -04:00
2012-04-06 21:07:49 -04:00
$res = $this->query($sql);
return db_filter($res->fetchAll(PDO::FETCH_ASSOC), 'routine_name');
}
// --------------------------------------------------------------------------
2012-04-06 19:22:52 -04:00
/**
* Return list of triggers for the current database
*
* @return array
*/
public function get_triggers()
{
2012-04-06 21:07:49 -04:00
$sql = <<<SQL
2012-04-09 13:27:12 -04:00
SELECT DISTINCT trigger_name
2012-04-06 21:07:49 -04:00
FROM "information_schema"."triggers"
WHERE "trigger_schema" NOT IN
('pg_catalog', 'information_schema')
SQL;
$res = $this->query($sql);
return $res->fetchAll(PDO::FETCH_ASSOC);
2012-04-06 19:22:52 -04: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-02 10:23:27 -04:00
// --------------------------------------------------------------------------
2012-04-02 10:23:27 -04:00
/**
* Create an SQL backup file for the current database's structure
*
* @return string
*/
public function backup_structure()
{
// @todo Implement Backup function
2012-04-02 10:23:27 -04:00
return '';
}
2012-04-02 10:23:27 -04:00
// --------------------------------------------------------------------------
2012-04-02 10:23:27 -04:00
/**
* Create an SQL backup file for the current database's data
*
* @return string
*/
public function backup_data()
{
// @todo Implement Backup function
return '';
}
}
2012-02-06 17:39:53 -05:00
//End of pgsql.php