如何在webpy中设置db timeout?

时间:2013-05-27 14:22:08

标签: python web.py

如何在 webpy

中设置数据库超时

webpy 中的db超时时,您通常如何做?

1 个答案:

答案 0 :(得分:0)

假设您在谈论MySQL数据库......

Mysql连接器有connection_timeout参数[1]。

web.py的MySQL类[2]在他的定义中使用**关键字,也许你可以使用connection_timeout。

至少我在这里试过,我的连接工作正常。我迫不及待地想看看它是否会在时间到期时掉落。

[1] - http://dev.mysql.com/doc/refman/5.7/en/connector-python-connectargs.html

[2] - https://github.com/webpy/webpy/blob/master/web/db.py