10bet网址
MySQL Connector/Python Developer Guide
Related Documentation Download this Manual
PDF (US Ltr)- 0.6Mb
PDF (A4)- 0.6Mb


10.5.7 MySQLCursor.fetchmany() Method

Syntax:

rows = cursor.fetchmany(size=1)

This method fetches the next set of rows of a query result and returns a list of tuples. If no more rows are available, it returns an empty list.

The number of rows returned can be specified using thesizeargument, which defaults to one. Fewer rows are returned if fewer rows are available than specified.

You must fetch all rows for the current query before executing new statements using the same connection.