php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13232 PEAR messes up with simultaneous connections.
Submitted: 2001-09-10 10:30 UTC Modified: 2001-10-14 07:34 UTC
From: fidian at commnav dot com Assigned:
Status: Closed Package: PEAR related
PHP Version: 4.0.6 OS: Linux 2.2.16
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: fidian at commnav dot com
New email:
PHP Version: OS:

 

 [2001-09-10 10:30 UTC] fidian at commnav dot com
PEAR seems to not be able to handle multiple connections to different databases.  To illustrate, create two tables in different databases (can be on the same server, but different databases within that server).

include("DB.php");
$oneWrapper = new DB();
$oneDB = $oneWrapper->connect("type://user:pass@server/one");
printRes($oneDB->query("select count(*) from table_one"));
$twoWrapper = new DB();
$twoDB = $twoWrapper->connect("type://user:pass@server/two");
printRes($twoDB->query("select count(*) from table_two"));
printRes($oneDB->query("select count(*) from table_one"));
printRes($oneDB->query("select count(*) from table_two"));
function printRes($res) {
   if (DB::isError($res)) {
      echo "Error:  " . DB::errorMessage($res) . "\n";
   } else {
      $data = $res->fetchRow();
      echo "Result: " . $count[0] . "\n";
   }
}


This code will print out

Result:  0
Result:  0
Error:  no such table
Result:  0

Looking back at the code, you will see that $oneDB is now pointing at the $twoDB's database instead of its correct one.

Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 00:01:28 2024 UTC