10.2.16 MySQLConnection.cmd_refresh()方法
句法:
cnx.cmd_refresh(options)
此方法刷新表或缓存,或重置复制服务器信息。连接的用户必须具有
RELOAD
权限。
options
参数应该是使用类中的常量构造的位掩码
值constants.RefreshOption
。
有关选项列表,请参阅
第 10.11 节,“constants.RefreshOption 类”。
例子:
>>> from mysql.connector import RefreshOption
>>> refresh = RefreshOption.LOG | RefreshOption.THREADS
>>> cnx.cmd_refresh(refresh)