MCPcopy Index your code
hub / github.com/PyMySQL/mysqlclient / fetchall

Method fetchall

src/MySQLdb/cursors.py:450–455  ·  view source on GitHub ↗

Fetches all available rows from the cursor.

(self)

Source from the content-addressed store, hash-verified

448 return r
449
450 def fetchall(self):
451 """Fetches all available rows from the cursor."""
452 self._check_executed()
453 r = self._fetch_row(0)
454 self.rownumber = self.rownumber + len(r)
455 return r
456
457 def __iter__(self):
458 return self

Callers 15

nextsetMethod · 0.45
test_cursor_isolationMethod · 0.45
test_callprocMethod · 0.45
_paraminsertMethod · 0.45
test_executemanyMethod · 0.45
test_fetchallMethod · 0.45
test_mixedfetchMethod · 0.45
test_nextsetMethod · 0.45
test_NoneMethod · 0.45
check_data_integrityMethod · 0.45

Calls 2

_check_executedMethod · 0.80
_fetch_rowMethod · 0.80

Tested by 15

test_cursor_isolationMethod · 0.36
test_callprocMethod · 0.36
test_executemanyMethod · 0.36
test_fetchallMethod · 0.36
test_mixedfetchMethod · 0.36
test_nextsetMethod · 0.36
test_NoneMethod · 0.36
test_transactionsMethod · 0.36
test_dictcursorFunction · 0.36