Skip to content

mysql python reconnect

2020.04.24 23:05

WHRIA 조회 수:196

 

 

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
번호 제목 글쓴이 날짜 조회 수
184 회귀분석 종류 WHRIA 2020.04.14 44
183 의료영상분석장치 분류 코드 WHRIA 2020.04.22 52
182 zerohq encryption [5] WHRIA 2020.04.23 58
181 image encryption [1] WHRIA 2020.04.24 79
180 php 세션 로그인 WHRIA 2020.04.24 72
179 mysql 암호화 [2] WHRIA 2020.04.24 54
» mysql python reconnect [2] WHRIA 2020.04.24 196
177 kfda [5] WHRIA 2020.04.29 93
176 exif javascript orientation WHRIA 2020.04.30 52
175 conflict of interest WHRIA 2020.05.03 48
174 annotation service WHRIA 2020.05.03 52
173 acquihire [1] WHRIA 2020.05.05 54
172 개명 WHRIA 2020.05.05 78
171 startup WHRIA 2020.05.08 72
170 software validation [1] WHRIA 2020.05.10 54

Powered by Xpress Engine / Designed by Sketchbook

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


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

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

설치 취소