Difference between mysql_connect and mysql_pconnect in php?
Answers were Sorted based on User's Feedback
Answer / md amanullah
mysql_connect opens a normal connections to mysql database.
mysql_pconnect opens a persistant connection i.e. if there
is any connection open in the script it will use that
connection not making a new connection each time. at very
high traffic enviornment mysql_connect provides better
performance.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / aatit
The following are the differences -
- A new connection is established to the database by using
mysql_connect, where as mysql_pconnect opens a persistant
connection to the database.
- mysql_connect can be used to close the connection, where as
mysql_pconnect can not close the connection.
- Database is opened every time when the page is loaded by
mysql_connect. Whereas by using mysql_pconnect, database need
not be connected every time.
| Is This Answer Correct ? | 4 Yes | 0 No |
how much a fresher php programmer can earn in india
what is output of echo 1< 2 and echo 1 >2
8 Answers HCL, Navigators Software,
How do you sort an array in php?
How do I install php?
how can i disable multiple user in the same password in my website using any scripts
Explain how we can get the number of elements in an array?
What is difference between variable declaration and variable definition?
Explain me what is the meaning of a persistent cookie?
Which PHP function would you use to send an email?
How to create and destroy cookies in php?
Tell me what is the importance of "action" attribute in a html form?
What is PHP?