Re: [sqlalchemy] Control connection timeout of MySQL client from SQLAlchemy

2017-03-31 Thread mike bayer
On 03/31/2017 05:19 AM, SG wrote: I have a system composed by client where runs sqlalchemy and a remote server where runs MySQL server database. With sqlalchemy I use to setup session: | # db_host is the ip address of remote server db_url

[sqlalchemy] Control connection timeout of MySQL client from SQLAlchemy

2017-03-31 Thread SG
I have a system composed by client where runs sqlalchemy and a remote server where runs MySQL server database. With sqlalchemy I use to setup session: # db_host is the ip address of remote server db_url = 'mysql+mysqldb://db_user:db_pswd@db_host/db_name' db_engine =