MCPcopy Index your code
hub / github.com/davispuh/MySQL-for-Python-3 / _fetch_row

Method _fetch_row

MySQLdb/cursors.py:325–328  ·  view source on GitHub ↗
(self, size=1)

Source from the content-addressed store, hash-verified

323 def _query(self, q): return self._do_query(q)
324
325 def _fetch_row(self, size=1):
326 if not self._result:
327 return ()
328 return self._result.fetch_row(size, self._fetch_type)
329
330 def __iter__(self):
331 return iter(self.fetchone, None)

Callers 4

_post_get_resultMethod · 0.80
fetchoneMethod · 0.80
fetchmanyMethod · 0.80
fetchallMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected