diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-20 00:07:07 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-20 00:07:07 +0100 |
commit | 48e1d2e78efea9f41e5ae65b600d35bb87b2e40f (patch) | |
tree | dd564d27bd7464f106d13672b58241f21f30e1e7 /system/database/drivers/oci8/oci8_utility.php | |
parent | 9e560a4c4828901a562f5459157ba0f76612c34f (diff) |
Revert "Oci8 access modifiers"
This reverts commit 9f86f5cddea54e7fedf4be89d1d1cc90d1564488.
Diffstat (limited to 'system/database/drivers/oci8/oci8_utility.php')
-rw-r--r-- | system/database/drivers/oci8/oci8_utility.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/system/database/drivers/oci8/oci8_utility.php b/system/database/drivers/oci8/oci8_utility.php index f4863c0db..62dfb2f3c 100644 --- a/system/database/drivers/oci8/oci8_utility.php +++ b/system/database/drivers/oci8/oci8_utility.php @@ -39,9 +39,10 @@ class CI_DB_oci8_utility extends CI_DB_utility { /** * List databases * + * @access private * @return bool */ - protected function _list_databases() + function _list_databases() { return FALSE; } @@ -53,10 +54,11 @@ class CI_DB_oci8_utility extends CI_DB_utility { * * Generates a platform-specific query so that a table can be optimized * + * @access private * @param string the table name * @return object */ - protected function _optimize_table($table) + function _optimize_table($table) { return FALSE; // Is this supported in Oracle? } @@ -68,10 +70,11 @@ class CI_DB_oci8_utility extends CI_DB_utility { * * Generates a platform-specific query so that a table can be repaired * + * @access private * @param string the table name * @return object */ - protected function _repair_table($table) + function _repair_table($table) { return FALSE; // Is this supported in Oracle? } @@ -81,10 +84,11 @@ class CI_DB_oci8_utility extends CI_DB_utility { /** * Oracle Export * + * @access private * @param array Preferences * @return mixed */ - protected function _backup($params = array()) + function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); |