Advertisements
Advertisements
Question
Mention the difference between fetchone() and fetchmany().
Distinguish Between
Advertisements
Solution
| fetchone() | fetchmany() |
| The fetchone() method returns the next row of a query result set | fetchmany() method returns the next number of rows (n) of the result set. |
| Example: r = cursor. fetchoneQ | Example: r = cursor. fetchmanyQ) |
shaalaa.com
Is there an error in this question or solution?
