summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mssql/mssql_utility.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-26 01:26:25 +0200
committeradmin <devnull@localhost>2006-09-26 01:26:25 +0200
commit9cd4e8e639a1a09fd6ca426f1af94586f30d4a80 (patch)
tree7abdc9289f336ba520a88e7b92d4a13fa5738287 /system/database/drivers/mssql/mssql_utility.php
parentd125c5c9e9cf3d53e4d6e166e7b44001d02191a3 (diff)
Diffstat (limited to 'system/database/drivers/mssql/mssql_utility.php')
-rw-r--r--system/database/drivers/mssql/mssql_utility.php62
1 files changed, 8 insertions, 54 deletions
diff --git a/system/database/drivers/mssql/mssql_utility.php b/system/database/drivers/mssql/mssql_utility.php
index cf15104c6..96b8180b8 100644
--- a/system/database/drivers/mssql/mssql_utility.php
+++ b/system/database/drivers/mssql/mssql_utility.php
@@ -67,76 +67,30 @@ class CI_DB_mssql_utility extends CI_DB_utility {
// --------------------------------------------------------------------
/**
- * Drop Table
- *
- * @access private
- * @return bool
- */
- function _drop_table($table)
- {
- return "DROP TABLE ".$this->db->_escape_table($name);
- }
-
- // --------------------------------------------------------------------
-
- /**
- * Version number query string
- *
- * @access public
- * @return string
- */
- function _version()
- {
- return "SELECT version() AS ver";
- }
-
- // --------------------------------------------------------------------
-
- /**
- * Show table query
+ * List table query
*
* Generates a platform-specific query string so that the table names can be fetched
*
- * @access public
+ * @access private
* @return string
*/
- function _show_tables()
+ function _list_tables()
{
return "SELECT name FROM sysobjects WHERE type = 'U' ORDER BY name";
}
-
- // --------------------------------------------------------------------
-
- /**
- * 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 "SELECT * FROM INFORMATION_SCHEMA.Columns WHERE TABLE_NAME = '".$this->db->_escape_table($table)."'";
- }
// --------------------------------------------------------------------
/**
- * Field data query
- *
- * Generates a platform-specific query so that the column data can be retrieved
+ * Drop Table
*
- * @access public
- * @param string the table name
- * @return object
+ * @access private
+ * @return bool
*/
- function _field_data($table)
+ function _drop_table($table)
{
- return "SELECT TOP 1 FROM ".$this->db->_escape_table($table);
+ return "DROP TABLE ".$this->db->_escape_table($name);
}
-
// --------------------------------------------------------------------