Documentation Home
MySQL Connector/Python Developer Guide
Related Documentation Download this Manual
PDF (US Ltr) - 0.7Mb
PDF (A4) - 0.7Mb


MySQL Connector/Python Developer Guide  /  Connector/Python C Extension API Reference  /  _mysql_connector.MySQL.fetch_row() Method

11.16 _mysql_connector.MySQL.fetch_row() Method

Syntax:

Press CTRL+C to copy
row = ccnx.fetch_row()

Fetches the next row from the active result set. The row is returned as a tuple that contains the values converted to Python objects, unless raw was set.

Press CTRL+C to copy
ccnx.query('SELECT CURRENT_USER(), 1 + 3, NOW()') row = ccnx.fetch_row() print(row) ccnx.free_result()

Raises a MySQLInterfaceError exception for any MySQL error returned by the MySQL server.