Search results for: "oci_num_rows"
What is the difference between using oci_num_rows() and ocirowcount() in PHP versions before 5.0.0?
In PHP versions before 5.0.0, there is a difference between using oci_num_rows() and ocirowcount() functions when working with Oracle databases. oci_n...
What are the potential pitfalls of using oci_num_rows in PHP5 for OCI (Oracle) compared to mysql_num_rows in MySQL?
The potential pitfall of using oci_num_rows in PHP5 for OCI (Oracle) compared to mysql_num_rows in MySQL is that oci_num_rows may not work as expected...