(self)
| 998 | return Datasheet(rows=self.rows(), fields=[(f, self.schema[f].type) for f in self.fields]) |
| 999 | |
| 1000 | def __repr__(self): |
| 1001 | return "Table(name=%s, count=%s, database=%s)" % ( |
| 1002 | repr(self.name), |
| 1003 | repr(self.count()), |
| 1004 | repr(self.db.name)) |
| 1005 | |
| 1006 | #### QUERY ######################################################################################### |
| 1007 |