We could add select and delete to tables and limitby could have a shortcut:
instead of: (db.posts.id>0).select(orderby=~db.posts.created_at,limitby=(0,10)) how about: db.posts.select(orderby=~db.posts.created_at, limitby=10) batch get: db.posts.select([3,5,9]) and delete could also accept kwargs: db.posts.delete(orderby=db.posts.created_at,limitby=10) and batch delete: db.posts.delete([3,5,9]) Robin --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

