On 13.03.2006 18:05, Nick Mitin wrote:
I was trying to create 2 mysql connections.
$l1 = mysql_pconnect(“localhost”, “user”, “pass”);
mysql_select_db(“db1”, $l1);
$l2 = mysql_pconnect(“localhost”, “user”, “pass”);
mysql_select_db(“db1”, $l2);
The $l1 and $l2 now contains different resource ids (#1, #2), but
mysql_query(“select * from table”, $l1) somehow uses the second connection.
Yes, this is the same connection.
This is by design.
If you need to open a separate connection - use mysql_connect() with 4th
parameter set to TRUE.
--
Wbr,
Antony Dovgal
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php