From a5e812c007b8dfbc4c117df379d63060f08b096a Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Sep 2006 02:17:30 +0000 Subject: --- system/database/drivers/odbc/odbc_utility.php | 58 +++++++++++++++++++++++++-- 1 file changed, 54 insertions(+), 4 deletions(-) (limited to 'system/database/drivers/odbc/odbc_utility.php') diff --git a/system/database/drivers/odbc/odbc_utility.php b/system/database/drivers/odbc/odbc_utility.php index f2b5602cc..837c8c881 100644 --- a/system/database/drivers/odbc/odbc_utility.php +++ b/system/database/drivers/odbc/odbc_utility.php @@ -22,20 +22,70 @@ * @author Rick Ellis * @link http://www.codeigniter.com/database/ */ -class CI_DB_odbc_utility { +class CI_DB_odbc_utility extends CI_DB_utility { + + /** + * Version number query string + * + * @access public + * @return string + */ + function _version() + { + return "SELECT version() AS ver"; + } + // -------------------------------------------------------------------- + /** - * Some function + * Show table query + * + * Generates a platform-specific query string so that the table names can be fetched * * @access public - * @return integer + * @return string */ - function something() + function _show_tables() { + return "SHOW TABLES FROM `".$this->db->database."`"; } // -------------------------------------------------------------------- + /** + * 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 _show_columns($table = '') + { + return "SHOW COLUMNS FROM ".$this->db->_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) + { + $sql = "SELECT TOP 1 FROM ".$this->db->_escape_table($table); + $query = $this->db->query($sql); + return $query->field_data(); + } + + + } ?> \ No newline at end of file -- cgit v1.2.3-24-g4f1b