Returns the given row as a dictionary of (field or alias, value)-items.
(self, row)
| 1287 | return self.execute() |
| 1288 | |
| 1289 | def record(self, row): |
| 1290 | """ Returns the given row as a dictionary of (field or alias, value)-items. |
| 1291 | """ |
| 1292 | return dict(zip((self.aliases.get(f,f) for f in self.fields), row)) |
| 1293 | |
| 1294 | @property |
| 1295 | def xml(self): |