Executes the query and returns the matching rows from the table.
(self)
| 1282 | return self._table.db.execute(self.SQL()) |
| 1283 | |
| 1284 | def rows(self): |
| 1285 | """ Executes the query and returns the matching rows from the table. |
| 1286 | """ |
| 1287 | return self.execute() |
| 1288 | |
| 1289 | def record(self, row): |
| 1290 | """ Returns the given row as a dictionary of (field or alias, value)-items. |
no test coverage detected