diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-20 00:06:46 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-20 00:06:46 +0100 |
commit | 9e560a4c4828901a562f5459157ba0f76612c34f (patch) | |
tree | 4d6a3562f8262013c2e33def2e0d21a14ef0c1aa /system/database/drivers/odbc/odbc_utility.php | |
parent | 667c9feadee8ef5ea8c1859e7c79c2d116469051 (diff) |
Revert "ODBC access modifiers"
This reverts commit 142ca8e565b722b758b5ef88c888891d04da8700.
Diffstat (limited to 'system/database/drivers/odbc/odbc_utility.php')
-rw-r--r-- | system/database/drivers/odbc/odbc_utility.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/system/database/drivers/odbc/odbc_utility.php b/system/database/drivers/odbc/odbc_utility.php index d663da1ad..c146c1785 100644 --- a/system/database/drivers/odbc/odbc_utility.php +++ b/system/database/drivers/odbc/odbc_utility.php @@ -39,9 +39,10 @@ class CI_DB_odbc_utility extends CI_DB_utility { /** * List databases * + * @access private * @return bool */ - protected function _list_databases() + function _list_databases() { // Not sure if ODBC lets you list all databases... if ($this->db->db_debug) @@ -58,10 +59,11 @@ class CI_DB_odbc_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) { // Not a supported ODBC feature if ($this->db->db_debug) @@ -78,10 +80,11 @@ class CI_DB_odbc_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) { // Not a supported ODBC feature if ($this->db->db_debug) @@ -96,10 +99,11 @@ class CI_DB_odbc_utility extends CI_DB_utility { /** * ODBC 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'); |