manage_sql.py: sql_checkcon() was the same funcion as conn()
This commit is contained in:
parent
5e68a9f7be
commit
3b38eae5e3
|
@ -36,16 +36,6 @@ SQL_PWD = CONFIG.get('sql', 'passwd')
|
|||
class HandleSql:
|
||||
"""Class to handle sql connection."""
|
||||
|
||||
@staticmethod
|
||||
def sql_checkconn():
|
||||
"""Check MySQL connection."""
|
||||
try:
|
||||
global conn
|
||||
conn = pymysql.connect(host=SQL_HOST, db=SQL_DB, user=SQL_USER, passwd=SQL_PWD)
|
||||
cur = conn.cursor()
|
||||
except pymysql.DatabaseError as error:
|
||||
print(error)
|
||||
|
||||
@staticmethod
|
||||
def sql_conn():
|
||||
"""Init sql connection."""
|
||||
|
|
Loading…
Reference in a new issue