i meant mysqli/php5 regarding pconnect. although, i've since seen information that leads me to believe that pconnect would "not" necessarily in and of itself be my solution.
i'm starting to believe that a real solution for this would have to be implemented within mysql itself... -bruce -----Original Message----- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] pconnect... * Thus wrote bruce: > hi... > > since pconnect is not supported in php5, i'm wondering if the issue is that > mysql no longer supports the underlying functions to implement pconnect, or > if the decision to leave it out was based upon other factors. php5 has pconnect. You're getting mysql/mysqli confused: mysql_pconnect(); // valid mysqli_pconnect(); // NOT valid pconnect was removed from the mysqlImproved extension because it usually causes more problems than it solves. mysqli is only for mysql database versions >= 4.1.2, anything less you will still use mysql. Curt -- First, let me assure you that this is not one of those shady pyramid schemes you've been hearing about. No, sir. Our model is the trapezoid! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php