Fetch several rows as a list of dictionaries. Deprecated: Use fetchmany() instead. Will be removed in 1.3.
(self, size=None)
| 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: |