diff options
author | admin <devnull@localhost> | 2006-09-26 01:26:25 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-26 01:26:25 +0200 |
commit | 9cd4e8e639a1a09fd6ca426f1af94586f30d4a80 (patch) | |
tree | 7abdc9289f336ba520a88e7b92d4a13fa5738287 /system/database/drivers/postgre/postgre_driver.php | |
parent | d125c5c9e9cf3d53e4d6e166e7b44001d02191a3 (diff) |
Diffstat (limited to 'system/database/drivers/postgre/postgre_driver.php')
-rw-r--r-- | system/database/drivers/postgre/postgre_driver.php | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/system/database/drivers/postgre/postgre_driver.php b/system/database/drivers/postgre/postgre_driver.php index 9c8a18eb5..026284118 100644 --- a/system/database/drivers/postgre/postgre_driver.php +++ b/system/database/drivers/postgre/postgre_driver.php @@ -71,7 +71,20 @@ class CI_DB_postgre_driver extends CI_DB { // Not needed for Postgre so we'll return TRUE return TRUE; } - + + // -------------------------------------------------------------------- + + /** + * Version number query string + * + * @access public + * @return string + */ + function _version() + { + return "SELECT version() AS ver"; + } + // -------------------------------------------------------------------- /** @@ -277,6 +290,38 @@ class CI_DB_postgre_driver extends CI_DB { // -------------------------------------------------------------------- /** + * Show columnn query + * + * Generates a platform-specific query string so that the column names can be fetched + * + * @access public + * @param string the table name + * @return string + */ + function _list_columns($table = '') + { + return "SELECT column_name FROM information_schema.columns WHERE table_name ='".$this->_escape_table($table)."'"; + } + + // -------------------------------------------------------------------- + + /** + * Field data query + * + * Generates a platform-specific query so that the column data can be retrieved + * + * @access public + * @param string the table name + * @return object + */ + function _field_data($table) + { + return "SELECT * FROM ".$this->_escape_table($table)." LIMIT 1"; + } + + // -------------------------------------------------------------------- + + /** * The error message string * * @access private |