InterviewSolution
Saved Bookmarks
| 1. |
State The Main Difference Between Mysql_connect And Mysql_pconnect ? |
|
Answer» With mysql_connect, you open a database CONNECTION each time when the PAGE loads, WHEREAS with mysql_pconnect, connection gets ESTABLISHED only once and provides access to the database across multiple requests. With mysql_connect, you open a database connection each time when the page loads, whereas with mysql_pconnect, connection gets established only once and provides access to the database across multiple requests. |
|