On Wednesday, September 14, 2011 10:04:31 AM UTC-4, Richard wrote: > > > row.counter should be set based on the number of functions being True, > > is there a way to loop through a table's fields? > > > for field in db[table].fields: > do something
Note, that will loop through the field names. If you want to loop through
the field objects themselves:
for field in db[table]:
do something with field object
Anthony

