在连接到MySQL的sqlalchemy中,我需要在with语句后关闭吗?

时间:2018-10-11 02:43:59

标签: python mysql sqlalchemy

我正在使用sqlalchemy连接MySQL服务器。我用“ with”语句编写了代码。

from sqlalchemy import create_engine

stmt = "call rax.test_only()"
with engine.begin() as connection:
    connection.execute(stmt)

它工作正常,但我有一个问题。 with声明之后,我需要关闭吗?如果是这样,我需要关闭什么级别?引擎级别或连接级别? 例如

engine.close()

connection.close()

谢谢。

0 个答案:

没有答案