MySQL Connector/Python Release Notes
Syntax:
cnx.cmd_refresh(options)
Deprecation
This MySQL Server functionality is deprecated.
This method flushes tables or caches, or resets replication
server information. The connected user must have the
RELOAD
privilege.
The options
argument should be a bitmask
value constructed using constants from the
constants.RefreshOption
class.
For a list of options, see Section 10.11, “constants.RefreshOption Class”.
Example:
>>> from mysql.connector import RefreshOption
>>> refresh = RefreshOption.LOG | RefreshOption.THREADS
>>> cnx.cmd_refresh(refresh)