Spec
-Windows7 64 bit
-ใช้เว็บ Server ** IIS 7.5
-PHP 5.5 32 bit
-Oracle Database Express 11 Release 2 Version Windows 64 bit
-Instant Client for Microsoft Windows (x64) Version 11.2
-Spec Windows7 64 bit
-เว็บ Server ** IIS 7.5
-OracleXE112_Win64.zip [Oracle Database 11g Release 2 Express Edition for Windows 64]
-instantclient_11_2 [Instant Client for Microsoft Windows (x64)]
เปลี่ยนมาใช้ xampp แล้ว ไม่ติดปัญหาอะไร แต่รันแล้วขึ้นแบบนี้
Warning: oci_connect(): ORA-12154: TNS:could not resolve the connect identifier specified in
code Code
<?php
$conn=oci_connect("system","password","XE");
If (!$conn)
echo 'Failed to connect to Oracle';
else
echo 'Succesfully connected with Oracle DB';
oci_close($conn);
?>