Reconnecting on MySQL Server Has Gone Away(在 MySQL 服务器上重新连接已经消失)
本文介绍了在 MySQL 服务器上重新连接已经消失的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何修改此类以捕获 MySQL 服务器离开的异常并重新连接?
How can I modify this class to catch exception where MySQL Server Goes Away, and reconnect?
推荐答案
你可能需要像这样创建自己的类
you probably will need to make your own class like this one
- 从
__construct
中删除 - 然后像这样连接到你的数据库:
try/except
编辑 1:
但是如果你说你的服务器消失了......那么可能是这样的
but if you say that your server goes away.... then may be smth like this
这篇关于在 MySQL 服务器上重新连接已经消失的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!