Posted by DEN on 12/08/05 11:30
Hello,
I try to connect to an oracle DB though oci8 :
print "start<br>";
$conn = oci_connect($user,$base_Pass,$base);
if (!$conn) {
$oerr = OCIError($conn);
echo "Fetch Code 1:".$oerr["message"];
print KO;
} else {
print "OK";
}When I run that, I don't even have an error message
All I have is start.
Why oci_connect doesn't print any log message if it does not work ?
My config : Linux 2.4.21-27.0.1
Oracle 9.20
OCI 8
PHP 4.3.2
Thanks for your ideas
DEN
[Back to original message]
|