This class provides constants defining MySQL client flags which can be used upon connection to configure the session. The ClientFlag class is available when importing mysql.connector.
>>> import mysql.connector >>> mysql.connector.ClientFlag.FOUND_ROWS 2
See Section 22.6.7.2.30, “Method MySQLConnection.set_client_flags(flags)”
and the connection
argument client_flag.
Note that the ClientFlag class cannot be instantiated.

User Comments
Add your own comment.