Index: system/classes/databaseconnection.php =================================================================== --- system/classes/databaseconnection.php (revision 1608) +++ system/classes/databaseconnection.php (working copy) @@ -777,6 +777,19 @@ } return $this->driver; } + + /** + * Returns a list of tables the DB currently knows about. + * + * @return array The list of tables. + */ + public function list_tables() + { + + return $this->tables; + + } + } ?>