我意识到在调用函数Connection
时会创建sqlalchemy.create_engine()
。但是如果我需要使用connection = engine.connect()
创建另一个连接,那么我最终可以通过connection.execute()
将多行插入表对象中,这不会导致Connection is busy with results for another hstmt (0)
错误吗?我在poolclass=QueuePool
中将sqlalchemy.create_engine()
作为参数传递,以便处理构建池的详细信息。但是,我仍然得到同样的错误。有办法解决这个问题吗?