summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8/oci8_result.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2011-10-20 08:44:48 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-10-27 01:02:07 +0200
commitcfe49186f26cd7bb6410abd4f1069b49325dc0e9 (patch)
treee9254cd0c5b34b96e817e7147462f0fa4ed6ea2e /system/database/drivers/oci8/oci8_result.php
parentc622a4155d912ad53143f5de94298eb8e60ba3e7 (diff)
Some public and protected method declarations
Diffstat (limited to 'system/database/drivers/oci8/oci8_result.php')
-rw-r--r--system/database/drivers/oci8/oci8_result.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/system/database/drivers/oci8/oci8_result.php b/system/database/drivers/oci8/oci8_result.php
index ea5f77537..ae133d7b5 100644
--- a/system/database/drivers/oci8/oci8_result.php
+++ b/system/database/drivers/oci8/oci8_result.php
@@ -146,10 +146,10 @@ class CI_DB_oci8_result extends CI_DB_result {
*
* Returns the result set as an array
*
- * @access public
+ * @access protected
* @return array
*/
- public function _fetch_assoc()
+ protected function _fetch_assoc()
{
$id = ($this->curs_id) ? $this->curs_id : $this->stmt_id;
return oci_fetch_assoc($id);
@@ -162,10 +162,10 @@ class CI_DB_oci8_result extends CI_DB_result {
*
* Returns the result set as an object
*
- * @access public
+ * @access protected
* @return object
*/
- public function _fetch_object()
+ protected function _fetch_object()
{
$id = ($this->curs_id) ? $this->curs_id : $this->stmt_id;
return @oci_fetch_object($id);
@@ -204,10 +204,10 @@ class CI_DB_oci8_result extends CI_DB_result {
* this internally before fetching results to make sure the
* result set starts at zero
*
- * @access public
+ * @access protected
* @return array
*/
- public function _data_seek($n = 0)
+ protected function _data_seek($n = 0)
{
return FALSE; // Not needed
}