diff --git a/system/database/drivers/odbc/odbc_utility.php b/system/database/drivers/odbc/odbc_utility.php
index 51fec8e..42537de 100644
--- a/system/database/drivers/odbc/odbc_utility.php
+++ b/system/database/drivers/odbc/odbc_utility.php
@@ -36,6 +36,10 @@
 	{
 		// ODBC has no "create database" command since it's 
 		// designed to connect to an existing database
+		if ($this->db_debug)
+		{
+			return $this->display_error('db_unsuported_feature');
+		}
 		return FALSE;
 	}
 
@@ -51,7 +55,29 @@
 	function drop_database($name)
 	{
 		// ODBC has no "drop database" command since it's 
-		// designed to connect to an existing database
+		// designed to connect to an existing database		
+		if ($this->db_debug)
+		{
+			return $this->display_error('db_unsuported_feature');
+		}
+		return FALSE;
+	}
+
+	// --------------------------------------------------------------------
+
+	/**
+	 * List databases
+	 *
+	 * @access	public
+	 * @return	bool
+	 */
+	function list_databases()
+	{
+		// Not sure if ODBC lets you list all databases...	
+		if ($this->db_debug)
+		{
+			return $this->display_error('db_unsuported_feature');
+		}
 		return FALSE;
 	}