Fetch all, as per MySQLdb. Pretty useless for large queries, as it is buffered. See fetchall_unbuffered(), if you want an unbuffered generator version of this method.
(self)
| 454 | return row |
| 455 | |
| 456 | def fetchall(self): |
| 457 | """ |
| 458 | Fetch all, as per MySQLdb. Pretty useless for large queries, as |
| 459 | it is buffered. See fetchall_unbuffered(), if you want an unbuffered |
| 460 | generator version of this method. |
| 461 | """ |
| 462 | return list(self.fetchall_unbuffered()) |
| 463 | |
| 464 | def fetchall_unbuffered(self): |
| 465 | """ |
nothing calls this directly
no test coverage detected