I'm working with a mysql database, which involves gathering photos and peoples names and displaying them on a page when a dropdown menu item is selected. I am accessing the database with a php script.

I am used to needing to having to re establish a connection every time I access the database (I hacked around and it worked) but I want this code to look a bit more professional. Does anyone know a way to leave a connection to the database open, so that I don't need to re establish a connection every time I make a request for data?

link|improve this question

61% accept rate
3  
I think you have a wrong idea of professional. As a professional programmer, I would rarely recommend leaving a database connection open for long periods of time without a specific reason for doing so. – Bueller Jan 6 at 18:56
This is not the way PHP typically works with MySQL. Unless you are using some kind of persistent connection, PHP will automatically close a MySQL connection upon the scripts termination. Whether you call close() or not. – Jason McCreary Jan 6 at 18:58
feedback

1 Answer

up vote 3 down vote accepted

I assume you mean keeping the connection open across multiple calls to the server. Within the same script, you should only have to open the connection once.

The mysqli documentation shows how to enable persistent connections.

However, you should benchmark your code to ensure that connecting to the database is really a performance-limiting factor. You can probably find bigger returns by examining the interplay between your application, the queries, and the schema.

With the older mysql_pconnect function, you could run in to issues where old users of a connection left things in a non-clean state:

The problem with persistent connections is that they can be left in unpredictable states by clients. For example, a table lock might be activated before a client terminates unexpectedly. A new client process reusing this persistent connection will get the connection "as is". Any cleanup would need to be done by the new client process before it could make good use of the persistent connection, increasing the burden on the programmer.

The mysqli logic does a whole bunch of cleanup for you so that this isn't an issue.

From the documentation, the cleanup includes:

  • Rollback active transactions
  • Close and drop temporary tables
  • Unlock tables
  • Reset session variables
  • Close prepared statements (always happens with PHP)
  • Close handler
  • Release locks acquired with GET_LOCK()
link|improve this answer
Thanks, both of you. That is what I needed to know. – Zack Jan 6 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.