MySQL Connector/Python 发行说明
语法
cnx.ping(reconnect=False, attempts=1, delay=0)
检查与 MySQL 服务器的连接是否仍然可用。
当 reconnect
设置为 True
时,将进行一次或多次 attempts
尝试重新连接到 MySQL 服务器,并将这些选项转发给 reconnect()>方法。如果希望在每次重试之间等待,请使用 delay
参数(秒)。
当连接不可用时,会引发 InterfaceError
。使用 is_connected() 方法检查连接,而不会引发错误。
在出现错误时引发 InterfaceError
。