Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does mysql_query() or die() leave open mysql connection? My thought is that it calls die() but it never calls mysql_close() on the connection...

Thanks.

share|improve this question
Just a word of advice on this though, instead of dying out like that , you should instead have some logic to show the error to the user versus showing them a nasty white page with a small amount of text. The side benefit of this is that you can actually close the connection after the failed query. – onteria_ May 24 '11 at 14:18
keep your connection open by using mysql_pconnect – Fredrik May 24 '11 at 14:58

3 Answers

up vote 6 down vote accepted

From the mysql_close docs:

Using mysql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. See also freeing resources

share|improve this answer
great minds.... – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè May 24 '11 at 14:08
1  
...eat spaghetti – Joe Philllips May 24 '11 at 14:12

http://php.net/manual/en/function.mysql-close.php

Using mysql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution.

share|improve this answer

Nope.
Read manual:

Using mysql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution.

share|improve this answer
1  
heh, 3 same answers simultaneously :) – OZ_ May 24 '11 at 14:08
just shows were-on-the-bull – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè May 24 '11 at 14:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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