Returns a list of all the rows in the table.
(self)
| 899 | return abs(self.name, field) |
| 900 | |
| 901 | def rows(self): |
| 902 | """ Returns a list of all the rows in the table. |
| 903 | """ |
| 904 | return self.db.execute("select * from `%s`;" % self.name) |
| 905 | |
| 906 | def filter(self, *args, **kwargs): |
| 907 | """ Returns the rows that match the given constraints (using equals + AND): |