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


10.2.21 MySQLConnection.get_row() Method

This method retrieves the next row of a query result set, returning a tuple.

The tuple returned byget_row() consists of:

  • The row as a tuple containing byte objects, orNone when no more rows are available.

  • EOF packet information as a dictionary containingstatus_flag andwarning_count, orNone when the row returned is not the last row.

Theget_row() method is used byMySQLCursor to fetch rows.