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.

link|improve this question

67% accept rate
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
feedback

3 Answers

up vote 5 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

link|improve this answer
great minds.... – Lawrence Cherone May 24 '11 at 14:08
1  
...eat spaghetti – Joe Philllips May 24 '11 at 14:12
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
1  
heh, 3 same answers simultaneously :) – OZ_ May 24 '11 at 14:08
just shows were-on-the-bull – Lawrence Cherone May 24 '11 at 14:09
feedback

Your Answer

 
or
required, but never shown

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