MCPcopy Index your code
hub / github.com/PyMySQL/PyMySQL / read_next

Method read_next

pymysql/cursors.py:438–440  ·  view source on GitHub ↗

Read next row.

(self)

Source from the content-addressed store, hash-verified

436 return self._nextset(unbuffered=True)
437
438 def read_next(self):
439 """Read next row."""
440 return self._conv_row(self._result._read_rowdata_packet_unbuffered())
441
442 def fetchone(self):
443 """Fetch next row."""

Callers 3

fetchoneMethod · 0.95
fetchmanyMethod · 0.95
scrollMethod · 0.95

Calls 2

_conv_rowMethod · 0.95

Tested by

no test coverage detected