>
> I have a simple question in turn. How is it possible to make keyword 
> search criteria dynamic? For example: 
>
> db(Orders.id==id).update(Keyword+n = checked) 
>
> where n is any number?


db(Orders.id==id).update(**{'%s%s' % (Keyword, n): checked})

Anthony 

Reply via email to