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

Method fetchmanyDict

MySQLdb/cursors.py:489–495  ·  view source on GitHub ↗

Fetch several rows as a list of dictionaries. Deprecated: Use fetchmany() instead. Will be removed in 1.3.

(self, size=None)

Source from the content-addressed store, hash-verified

487 return self.fetchone()
488
489 def fetchmanyDict(self, size=None):
490 """Fetch several rows as a list of dictionaries. Deprecated:
491 Use fetchmany() instead. Will be removed in 1.3."""
492 from warnings import warn
493 warn("fetchmanyDict() is non-standard and will be removed in 1.3",
494 DeprecationWarning, 2)
495 return self.fetchmany(size)
496
497 def fetchallDict(self):
498 """Fetch all available rows as a list of dictionaries. Deprecated:

Callers

nothing calls this directly

Calls 1

fetchmanyMethod · 0.45

Tested by

no test coverage detected