diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-12-04 12:32:16 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-12-04 12:32:16 +0100 |
commit | 69edc4368d6c6588936b3b6c8bcb9d36626d363a (patch) | |
tree | 17ee7f48f713fd4d40d6299b8948f7c1fe436bfb /system/database/drivers/oci8 | |
parent | c07c4855f808a0b3c0aac7d8056f38161185a4c7 (diff) |
Rename DB_result _data_seek() to data_seek() and make it publicly available
(as requested in #2050)
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r-- | system/database/drivers/oci8/oci8_result.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_result.php b/system/database/drivers/oci8/oci8_result.php index 7d5bf5172..661ea4944 100644 --- a/system/database/drivers/oci8/oci8_result.php +++ b/system/database/drivers/oci8/oci8_result.php @@ -240,8 +240,13 @@ class CI_DB_oci8_result extends CI_DB_result { * @param int $n (ignored) * @return bool */ - protected function _data_seek($n = 0) + public function data_seek($n = 0) { + if ($n > 0) + { + return FALSE; + } + /* The PHP manual says that if OCI_NO_AUTO_COMMIT mode * is used, and oci_rollback() and/or oci_commit() are * not subsequently called - this will cause an unnecessary |