mysql python reconnect
2020.04.25 00:05
import MySQLdb
class DB:
conn = None
def connect(self):
self.conn = MySQLdb.connect()
def query(self, sql):
try:
cursor = self.conn.cursor()
cursor.execute(sql)
except (AttributeError, MySQLdb.OperationalError):
self.connect()
cursor = self.conn.cursor()
cursor.execute(sql)
return cursor
db = DB()
sql = "SELECT * FROM foo"
cur = db.query(sql)
# wait a long time for the Mysql connection to timeout
cur = db.query(sql)
# still works
댓글 2
-
WHRIA
2020.04.25 00:10
-
WHRIA
2020.04.25 00:13
#!/usr/bin/env python import MySQLdb class DisconnectSafeCursor(object): db = None cursor = None def __init__(self, db, cursor): self.db = db self.cursor = cursor def close(self): self.cursor.close() def execute(self, *args, **kwargs): try: return self.cursor.execute(*args, **kwargs) except MySQLdb.OperationalError: self.db.reconnect() self.cursor = self.db.cursor() return self.cursor.execute(*args, **kwargs) def fetchone(self): return self.cursor.fetchone() def fetchall(self): return self.cursor.fetchall() class DisconnectSafeConnection(object): connect_args = None connect_kwargs = None conn = None def __init__(self, *args, **kwargs): self.connect_args = args self.connect_kwargs = kwargs self.reconnect() def reconnect(self): self.conn = MySQLdb.connect(*self.connect_args, **self.connect_kwargs) def cursor(self, *args, **kwargs): cur = self.conn.cursor(*args, **kwargs) return DisconnectSafeCursor(self, cur) def commit(self): self.conn.commit() def rollback(self): self.conn.rollback() disconnectSafeConnect = DisconnectSafeConnection
번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|
1654 | CE | WHRIA | 2020.05.17 | 76 |
1653 | 식약청 메뉴 | WHRIA | 2020.05.14 | 113 |
1652 | android / capture and crop [5] | WHRIA | 2020.05.10 | 78 |
1651 | webapp [1] | WHRIA | 2020.05.10 | 162 |
1650 | software validation [1] | WHRIA | 2020.05.10 | 91 |
1649 | startup | WHRIA | 2020.05.08 | 149 |
1648 | 개명 | WHRIA | 2020.05.05 | 100 |
1647 | acquihire [1] | WHRIA | 2020.05.05 | 77 |
1646 | annotation service | WHRIA | 2020.05.03 | 78 |
1645 | conflict of interest | WHRIA | 2020.05.03 | 72 |
1644 | exif javascript orientation | WHRIA | 2020.04.30 | 73 |
1643 | kfda [5] | WHRIA | 2020.04.29 | 123 |
» | mysql python reconnect [2] | WHRIA | 2020.04.25 | 213 |
1641 | mysql 암호화 [2] | WHRIA | 2020.04.24 | 76 |
1640 | php 세션 로그인 | WHRIA | 2020.04.24 | 108 |
https://stackoverflow.com/questions/207981/how-to-enable-mysql-client-auto-re-connect-with-mysqldb