Documentation Home

10.2.16 MySQLConnection.cmd_refresh()方法

句法:

cnx.cmd_refresh(options)
弃用

此 MySQL 服务器功能已弃用。

此方法刷新表或缓存,或重置复制服务器信息。连接的用户必须具有 RELOAD权限。

options参数应该是使用类中的常量构造的位掩码 值constants.RefreshOption

有关选项列表,请参阅 第 10.11 节,“constants.RefreshOption 类”

例子:

>>> from mysql.connector import RefreshOption
>>> refresh = RefreshOption.LOG | RefreshOption.THREADS
>>> cnx.cmd_refresh(refresh)