summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/odbc/odbc_utility.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-25 08:40:16 +0200
committeradmin <devnull@localhost>2006-09-25 08:40:16 +0200
commit4ceac2d4efa5a16486b6e97911bb32e261b9d648 (patch)
tree0861dd86129ec60d1214d2da8bbe37600bdb54ef /system/database/drivers/odbc/odbc_utility.php
parent72496373008b263e098cf6082cdce1d47d01d3f1 (diff)
Diffstat (limited to 'system/database/drivers/odbc/odbc_utility.php')
-rw-r--r--system/database/drivers/odbc/odbc_utility.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/system/database/drivers/odbc/odbc_utility.php b/system/database/drivers/odbc/odbc_utility.php
index 42537de70..cfd829cb6 100644
--- a/system/database/drivers/odbc/odbc_utility.php
+++ b/system/database/drivers/odbc/odbc_utility.php
@@ -84,6 +84,24 @@ class CI_DB_odbc_utility extends CI_DB_utility {
// --------------------------------------------------------------------
/**
+ * Drop Table
+ *
+ * @access public
+ * @return bool
+ */
+ function drop_table($table)
+ {
+ // Not a supported ODBC feature
+ if ($this->db_debug)
+ {
+ return $this->display_error('db_unsuported_feature');
+ }
+ return FALSE;
+ }
+
+ // --------------------------------------------------------------------
+
+ /**
* Version number query string
*
* @access public