![]() |
sponsored links |
|
|
sponsored links
|
|
|
2
5th May 04:32
External User
Posts: 1
|
ID: 35868
Updated by: sniper@php.net Reported By: giovanni at giacobbi dot net -Status: Open +Status: Bogus Bug Type: MySQL related Operating System: * PHP Version: 4.4.1 New Comment: Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2006-01-01 22:34:38] giovanni at giacobbi dot net Description: ------------ The code for reproducing is self-explanatory. Anyway, the problem appears when handling multiple connections to the same database with the same login and passwords. I'm testing a script that handles connections to multiple MySQL databases, and for testing purposes I need to operate with two separated local database. However, the connection is only distinguished by the database name, while you use only host, user, and password for hashing the single connection. This results in a collision when opening the second connection, and makes it impossible to recover the previous one using mysql_connect()'s existing link functionality, even if the connection itself is still open. Reproduce code: --------------- <?php /* create primary connection */ $r1 = mysql_connect("localhost", "root", "*****", TRUE); mysql_select_db("dbname1", $r1) or die(mysql_error()); var_dump($r1); /* create auxiliary connection */ $r2 = mysql_connect("localhost", "root", "*****", TRUE); mysql_select_db("dbname2", $r2) or die(mysql_error()); var_dump($r2); /* get rid of auxiliary connection when done */ mysql_close($r2); /* fetch back the previous connection as default! */ $r3 = mysql_connect("localhost", "root", "******"); var_dump($r3); exit(); Expected result: ---------------- resource(4) of type (mysql link) resource(5) of type (mysql link) resource(4) of type (mysql link) Actual result: -------------- resource(4) of type (mysql link) resource(5) of type (mysql link) resource(6) of type (mysql link) ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=35868&edit=1 |
|
|