Dear PHP Documentation Team, There is a mistake in Example 2. "Displaying the Oracle error message after a parsing error" on the page http://www.php.net/manual/en/function.oci-error.php
The third line:
" $e = oci_parse($conn); // For oci_parse errors pass the connection handle"
should be replaced with:
" $e = oci_error($conn); // For oci_parse errors pass the connection handle"
Regards,
Nicolas Lachiche
