ID: 12432
Updated by: mfischer
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: MySQL related
Operating System: GNU Linux
PHP Version: 4.0.6
New Comment:
This is currently a feature. Although you haven't given full source I assume both
'mysql_connect()'s were the same. Two or more connects with the same parameter reuse
the allready established connection and don't create a new one. So, closing one of
them closes all other, too.
Re-Open if my assumption were wrong.
Previous Comments:
------------------------------------------------------------------------
[2001-07-27 13:31:35] [EMAIL PROTECTED]
$eLink = mysql_connect(...);
.
.
.
class test {
function einTest() {
$eLink = mysql_connect();
mysql_close($eLink);
}
}
$aVar = new test();
$aVar->einTest();
mysql_query("...",$eLink);
-----> not valid mysql ressource
After einTest() it looks like it closes the outside mysql_connection ($eLink) no
matter how the connection
var in einTest() is named!
Serious stuff!
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=12432&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]