Windows x64 oracle veritabanına bağlanmak php

0 Cevap php

Ben windows x64 Oracle veritabanına php bağlanmak çalışıyorum

Ben kullanın: php5, apache2, 10.2 oraclexe

Dosyam "test.php" aşağıdadır:

 <?php
  if ($c = oci_connect("SYSTEM", "root", "//localhost:1521/XE")) {
   echo "Successfully connected to Oracle.";
   oci_close($c);
  } else {
   $err = oci_error();
   echo "Oracle Connect Error " . $err['text'];
  }
 ?>

Ben localhost / test.php açtığınızda, bir şu hatayı alıyorum:

Warning: oci_connect() [function.oci-connect]: ORA-06413: Connection not open

I can not understand the cause of this error, because I have already connected to the same database from Java, and I think the php.ini file is well configured, because I managed to connect from php to MySQL database. Also followed this tutorial: http://www.orafaq.com/wiki/PHP_FAQ

Yani birisi bir çözüm ve yorum lütfen yayınlayın varsa

0 Cevap