Posted by Colin McKinnon on 12/10/05 00:32
DEN wrote:
> 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 ?
>
Check your log files. Script is not completing so your install must be
configured to suppress errors to the browser.
C.
[Back to original message]
|