php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #58266 TNS PROBLEM
Submitted: 2008-07-08 09:40 UTC Modified: 2021-05-16 04:22 UTC
From: j dot kaluza at redcross-transfusion dot be Assigned: cmb (profile)
Status: No Feedback Package: PDO OCI
PHP Version: 5.2.5 OS: Windows XP pro
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
44 - 42 = ?
Subscribe to this entry?

 
 [2008-07-08 09:40 UTC] j dot kaluza at redcross-transfusion dot be
Description:
------------
Hello,
While trying to connect to Oracle database with PDO_OCI, i get ORA error following : 

ORA-12533:TNS:illegal ADDRESS parameters

If i modify the TNS identifier in the source code (index dbname of $params array) nothing change, even if the tns i use doesn't exist. With Oracle software, it works, it will work also with oci8 package

Reproduce code:
---------------
$options = array ( Zend_Db::CASE_FOLDING => Zend_Db::CASE_UPPER);
$params = array ('username' => 'myuser', 
		'password' => 'mypass',
		'dbname'      => 'TEST1_SFSORAA1',
		'options'  => $options);
try{			
  $db = Zend_Db::factory("PDO_OCI",$params);
  $db->getConnection();
  return $db;
}catch(Zend_Db_Adapter_Exception $e){
	echo $e->getMessage();
}

Expected result:
----------------
successfull logon

Actual result:
--------------
logon faailure due to TNS problem

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-08-07 09:24 UTC] j dot kaluza at redcross-transfusion dot be
tnsnames.ora contents :

TEST1_SFSORAA1 =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = sfsoraa1)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = test)
      (INSTANCE_NAME = test1)
    )
    (HS = OK)
  )

SFSWEB02.CRBSFS.LOCAL =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = sfsweb02.crb-sfs.local)(PORT = 1521))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = web02prd.crbsfs.local)
    )
  )
 [2021-05-03 11:50 UTC] cmb@php.net
-Status: Open +Status: Feedback -Package: PDO_OCI +Package: PDO OCI -Assigned To: +Assigned To: cmb
 [2021-05-03 11:50 UTC] cmb@php.net
Is this still an issue with any of the actively supported PHP
versions[1]?

[1] <https://www.php.net/supported-versions.php>
 [2021-05-16 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 13:01:27 2024 UTC