Why doesn't the as_list() seem to work when fields have been specified? Try this: >>>db(db.table.id == 1).select().as_list() #works fine
Now this: >>>db(db.table.id == 1).select(db.table.id,db.table.x).as_list() #doesn't work properly with fields Am i missing something? I think as_dict() is the same.