On Oct 2, 1:47 am, handsome greg <[EMAIL PROTECTED]> wrote:
> Ok here's another quick question. How can I catch a DB connect that
> fails and perform some kind of action (display a "sorry... site's
> down" page, etc.) if the DB isn't available? I can't seem to figure it
> out. Thanks!

Use the try....except statements.

try:
   <do whatever you want with your db>
except OperationalError:
  return HttpResponse("Sorry Site is down") #  you could also use
render_to_response

Cheers
Thejaswi Puthraya


--~--~---------~--~----~------------~-------~--~----~
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