[PHP-DEV] Bug 5474 From: Steven Roussey (sroussey <email protected>)
Date: 01/04/01

Hi!

Sorry I didn't get back in time for v4.0.4.

Bug 5474 should still be open. The changes have not fixed the problem. :( I
thought my suggestions would help (I hope they did), but everyone's work on
closing the mysql persistent connections has yet to quite do it (v4.0.4).

For example:
<?
        $sock = mysql_pconnect ( "server.i", "user", "pass" );
        mysql_close($sock);
?>

Gives this error on mysql server:
010103 20:31:10 Aborted connection 211950 to db: 'unconnected' user: 'user'
host: `client.i' (Got an error reading communication packets)

while:
<?
        $sock = mysql_connect ( "server.i", "user", "pass" );
        mysql_close($sock);
?>

gives no error.

So its in the handling of closing of persistent connections only. This bug
drives me nuts...

Sincerely,

Steven Roussey
Network54.com
http://network54.com/?pp=e

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>