hi

i have table games and they have tags
i followed the example in the book and put tags in separate table

now i want to show all games with all tags in the view: game.title, 
games.instruction, game.tags
in fuction i have
for game in games:        
        equipment =[tag.name for tag in 
db(db.tag.game_id==game.id).select()]
        game.f_equipment =', '.join(equipment)

having more than 1000 games (games is row object with more than 1000 
entries), this is very slow. how can i make that faster?

andrej

-- 



Reply via email to