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 8.2.30, “Method MySQLConnection.set_client_flags(flags)”
and the connection
argument client_flag.
Note that the ClientFlag class can not be instantiated.

User Comments
Add your own comment.