I haven't been able to figure this out: I want to use the "format"
representation defined in my db model to represent the rows in a list of
query results. In other words, I'd like to be able to do something like
this:
rowlist = []
q = db(db.mytable.id > 0).select()
for r in q:
rowlist.append(r._format)
But, of course, r._format doesn't give me the formatted representation of
the row. (It seems to be a property of the db.tables[x] object, but not not
a property of the rows object produced by the query.)
Thanks,
Ian