SSCursor上的数据库连接未关闭

时间:2018-08-30 07:25:25

标签: mysql

我有以下功能可保持连接打开,但我不知道为什么。

connection=MySQLdb.connect("", "", "", "",
                           cursorclass = MySQLdb.cursors.SSCursor)
cursor=connection.cursor()
cursor.execute("select id, ...", (profile_id, ...))
try:
    for row in cursor.fetchall():
        yield row
except:
    pass
finally:
    connection.close()

我要去哪里错了?

0 个答案:

没有答案