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

link|improve this question

76% accept rate
feedback

2 Answers

up vote 5 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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