hello one and all,
isn't this possible?
from pydal.objects import Rows, Row
qFab = Rows([ Row({'word':'happy', 'letters':'fifnen',}), Row({'word':'day', 'letters':'jfinef',}), ])
and then:
for f in qFab:
w, l = f.word, f.letters
etc....
I seem to remember doing these sorts of things in web2py.
thank you in advance, Lucas