summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-09-05 09:31:10 +0200
committerAndrey Andreev <narf@bofh.bg>2012-09-05 09:31:10 +0200
commitda4f9e1291c6b4d9beb682b635a811de897fbacf (patch)
treeed3d42d75d012bdd03cbd572dad95d9d47ac1b9b /system
parent894b7433cdab3ccb1577f2696a31d7b7a9ebb20d (diff)
Backport a fix for oci8_result::num_rows()
Diffstat (limited to 'system')
-rw-r--r--system/database/drivers/oci8/oci8_result.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/system/database/drivers/oci8/oci8_result.php b/system/database/drivers/oci8/oci8_result.php
index ae133d7b5..3421278a5 100644
--- a/system/database/drivers/oci8/oci8_result.php
+++ b/system/database/drivers/oci8/oci8_result.php
@@ -26,9 +26,9 @@
*/
class CI_DB_oci8_result extends CI_DB_result {
- var $stmt_id;
- var $curs_id;
- var $limit_used;
+ public $stmt_id;
+ public $curs_id;
+ public $limit_used;
/**
* Number of rows in the result set.
@@ -36,8 +36,6 @@ class CI_DB_oci8_result extends CI_DB_result {
* Oracle doesn't have a graceful way to retun the number of rows
* so we have to use what amounts to a hack.
*
- *
- * @access public
* @return integer
*/
public function num_rows()
@@ -53,7 +51,7 @@ class CI_DB_oci8_result extends CI_DB_result {
}
}
- return $rowcount;
+ return $this->num_rows;
}
// --------------------------------------------------------------------