Skip to content

mysql python reconnect

2020.04.24 23:05

WHRIA 조회 수:184

 

 

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
번호 제목 글쓴이 날짜 조회 수
1656 single file encrypt decrypt WHRIA 2020.05.17 1730
1655 encfs WHRIA 2020.05.17 33301
1654 CE WHRIA 2020.05.17 33
1653 식약청 메뉴 WHRIA 2020.05.14 45
1652 android / capture and crop [5] WHRIA 2020.05.10 37
1651 webapp [1] WHRIA 2020.05.10 41
1650 software validation [1] WHRIA 2020.05.10 51
1649 startup WHRIA 2020.05.08 53
1648 개명 WHRIA 2020.05.05 64
1647 acquihire [1] WHRIA 2020.05.05 42
1646 annotation service WHRIA 2020.05.03 45
1645 conflict of interest WHRIA 2020.05.03 35
1644 exif javascript orientation WHRIA 2020.04.30 44
1643 kfda [5] WHRIA 2020.04.29 80
» mysql python reconnect [2] WHRIA 2020.04.24 184

Powered by Xpress Engine / Designed by Sketchbook

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소