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.

Just starting to get to grips with python and MySQLdb and was wondering

  1. Where is the best play to put a try/catch block for the connection to MySQL. At the MySQLdb.connect point? Also should there be one when ever i query?

  2. What exceptions should i be catching on any of these blocks?

thanks for any help

Cheers Mark

share|improve this question

2 Answers

up vote 8 down vote accepted

Catch the MySQLdb.Error, while connecting and while executing query

share|improve this answer

I think that the connections and the query can raised errors so you should have try/excepy for both of them.

share|improve this answer

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.