PHP连接Oracle ORA-121154问题解决
程序员文章站
2022-07-07 23:46:21
错误提示:ocilogon(): ORA-12154: TNS:could not resolve the connect identifier specifie!...
错误提示:ocilogon(): ORA-12154: TNS:could not resolve the connect identifier specifie!
操作系统:Win7
本地环境:xampp-win32-1.8.2-1-VC9 、 Oracle 10g。
PHP连接测试代码:
[php]
<?php
ocilogon('emesc','emesc','mesb');
//print_r(oci_error());
?>
<?php
ocilogon('emesc','emesc','mesb');
//print_r(oci_error());
?>结果发现提示:ocilogon(): ORA-12154: TNS:could not resolve the connect identifier specifie!
原因分析:之前通过自己配置tnsnames.ora和环境变量来使用PL/SQL,导致安装oracle客户端的时候环境变量异常。导致PHP无法解析连接字符串。
解决方案:在系统中添加:名为TNS_ADMIN的环境变量:D:\oracle\product\10.2.0\db_1\network\ADMIN。测试连接成功!
推荐阅读
-
Linux下PHP连接Oracle数据库
-
windwos下使用php连接oracle数据库的过程分享
-
用PHP连接Oracle数据库
-
php连接oracle数据库及查询数据的方法
-
oracle sql developer 出现 : 适配器无法建立连接问题解决方案 The Network Adapter could not establish the connection
-
PHP连接SQLServer2005 的问题解决方法
-
用PHP连接Oracle for NT 远程数据库
-
PHP连接Oracle ORA-121154问题解决
-
Oracle ORA-12154: TNS: 无法解析指定的连接标识符问题解决
-
PHP连接sql server 2005环境配置及问题解决