On 3/22/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Do I need to close the connection after I'm done with the results?
> I've also recently started receiving 'too many connections' errors...
> and thought this might be the reason?

Django will automatically close the connection at the end of the
request, so you don't need to manually close it. Django also keeps
only one DB connection per request, regardless of how you use it
(e.g., whether you just use the Django ORM or grab the connection
manually and execute custom SQL), so it shouldn't affect how many
connections you have.

Usually when I get that error message it's because someone else on my
shared server turned on some Wordpress plugins and is doing a hundred
queries per page on their blog.

-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to