Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Wondering if there is a way to use a python script to attempt a connection to a group mysql database hosts? Ideally there would be X number of hosts and it would try connecting to each, then fail if no connection could be made. I do not believe MySQLdb.connect is capable of handling multiple hosts, maybe I am wrong.

share|improve this question
So why cannot you just do MySQLdb.connect in a loop, trying different host each iteration? – Roman Bataev May 4 '12 at 14:01
Perhaps adding your 'connect' statements in a map/dict? – mastashake57 May 4 '12 at 14:01

1 Answer

up vote 2 down vote accepted

mysqldb.connect is perfectly ok with connecting to multiple hosts:

try:
    conn1 = mysqldb.connect(...)
    conn2 = mysqldb.connect(...)
    ...
except:  # add specific exception here
    ...  # support failure when connecting
share|improve this answer
Thanks, I didn't know about try/except (new to python). – somecallmemike May 4 '12 at 14:22

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.