>
> def event():
>     response.view='calendar/event.html'
>     row=db(db.EventList.id==request.args(0)).select(db.EventList.ALL)


row is actually a DAL Rows object -- if you want a Row object, you have to 
select a specific row. Try:

row=db(db.EventList.id <http://db.eventlist.id/>==request.args(0)).select(db
.EventList.ALL).first()

Anthony

Reply via email to