Error Oracle Undefined variable: rowcount in oci8_result.php - CodeIgniter
One of the basic problems you run into is "Error Oracle Undefined variable: rowcount in oci8_result.php" when CodeIgniter is trying to get row count while working with Oracle DB. The error coming out as below:
Severity: Notice
Message: Undefined variable: rowcount
Filename: oci8/oci8_result.php
Line Number: XX
Open the file oci8_result.php in (../system/database/drivers/oci8/oci8_result.php) and change
return $rowcount;
to
retrun $this->num_rows();
That solves it.