diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-19 22:53:37 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-19 22:53:37 +0100 |
commit | 9f86f5cddea54e7fedf4be89d1d1cc90d1564488 (patch) | |
tree | 792f33a8de9e5a08b6f8edf3e3655ea953d01e33 /system/database/drivers/oci8/oci8_utility.php | |
parent | ba1ebbefa9c5d225fa28c76dac276e6120263a25 (diff) |
Oci8 access modifiers
Diffstat (limited to 'system/database/drivers/oci8/oci8_utility.php')
-rw-r--r-- | system/database/drivers/oci8/oci8_utility.php | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/system/database/drivers/oci8/oci8_utility.php b/system/database/drivers/oci8/oci8_utility.php index 62dfb2f3c..f4863c0db 100644 --- a/system/database/drivers/oci8/oci8_utility.php +++ b/system/database/drivers/oci8/oci8_utility.php @@ -39,10 +39,9 @@ class CI_DB_oci8_utility extends CI_DB_utility { /** * List databases * - * @access private * @return bool */ - function _list_databases() + protected function _list_databases() { return FALSE; } @@ -54,11 +53,10 @@ 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 */ - function _optimize_table($table) + protected function _optimize_table($table) { return FALSE; // Is this supported in Oracle? } @@ -70,11 +68,10 @@ 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 */ - function _repair_table($table) + protected function _repair_table($table) { return FALSE; // Is this supported in Oracle? } @@ -84,11 +81,10 @@ class CI_DB_oci8_utility extends CI_DB_utility { /** * Oracle Export * - * @access private * @param array Preferences * @return mixed */ - function _backup($params = array()) + protected function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); |