fix for count_all
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 160a56d..56095e9 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -413,7 +413,7 @@
 		if ($table == '')

 			return '0';

 

-		$query = $this->query($this->_count_string . "FROM ".$table);

+		$query = $this->query($this->_count_string . $this->_protect_identifiers('numrows'). " FROM " . $this->_protect_identifiers($this->dbprefix.$table));

 

 		if ($query == FALSE)

 			{