1,更改配置文件,添加:
[mysqld]
wait_timeout=10数据库数量越大,这个值也要提高
2,不适用长链接数据库,显示close
with self.connection.cursor() as cursor:
cursor.execute(sql)
self.connection.commit()
cursor.close()
本文共 223 字,大约阅读时间需要 1 分钟。
1,更改配置文件,添加:
[mysqld]
wait_timeout=10数据库数量越大,这个值也要提高
2,不适用长链接数据库,显示close
with self.connection.cursor() as cursor:
cursor.execute(sql)
self.connection.commit()
cursor.close()
转载于:https://my.oschina.net/u/2367514/blog/668386