I am using Zend Framework 1 and connecting Oracle Database using Zend_Db_Adapter_Oracle class (it uses the php_oci8 extension).
While connecting with Oracle Server it throwing below error:
ORA-12154: TNS:could not resolve the connect identifier specified
However, When I use Zend_Db_Adapter_Pdo_Oci class (It uses pdo_oci driver) all works fine, The only issue with pdo_oci extencion is that I am not able to fetch values of the columns those have define as CLOB data type. Also found this saying there is some issue with CLOB datatype if using pdo_coi. That's why I am looking forward for php_oci8 extension.
Any help to fix the issue appreciated.
Thank You.