MySQL Forums
Forum List  »  PHP

Re: Connecting to MySQL on numerous pages
Posted by: Peter Brawley
Date: March 11, 2012 01:04PM

No need to check for the existence or loading of DLLs. If they're missing, the connection error message will indicate it.

In the days of slower server processors, reusable/persistent connections were recommended. On contemporary adequate servers, they improve speed by a millisecond or less, and that's infinitesimal improvement compared with how long the simplest query call takes to return. So mysqli does not support them. Then why use them with the mysql interface, especially when that interface will not execute multiple stored procedures?

PB
http://www.artfulsoftware.com

Options: ReplyQuote


Subject
Written By
Posted
Re: Connecting to MySQL on numerous pages
March 11, 2012 01:04PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.