MySQL Connector/Python Release Notes
Syntax:
Press CTRL+C to copyconverted_obj = ccnx.convert_to_mysql(obj))
Converts a Python object to a MySQL value based on the Python type of the object. The converted object is escaped and quoted.
Press CTRL+C to copyccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()') row = ccnx.fetch_row() for col in row: print(ccnx.convert_to_mysql(col)) ccnx.consume_result()
Raises a MySQLInterfaceError
exception if the
Python object cannot be converted.