try:
with closing(connect(host=self.ip, user=self.login, password=self.passwd, database=self.db)) as connection:
with connection.cursor() as cursor:
cursor.execute(sql)
if sql.startswith('select'):
return cursor.fetchall()
connection.commit()
except Error as e:
print(e)
вот так норм с БД обращаться?
Нет, ты на каждый чих будешь устанавливать соединение с бд?
Обсуждают сегодня