Thank you Vasile for your quick response. This will be perfect. On Friday, October 19, 2012 2:02:41 PM UTC-4, Vasile Ermicioi wrote: > > _last_id = 0 > _items_per_page=1000 > for row in db(db.table.id>_last_id).select(limitby=(0,_items_per_page), > orderby=db.table.id): > #do something > _last_id = row.id > >
--