Hi! Massimo... does it really limits the number of entities queried from GAE datastore? I made some tests while observing quota limits... and seens that each time I do limitby=(0,10), all 845 entities I have are being returned... but web2py only shows 10 first...
Is there a way I can only get then 10 first from database ? GAE costs increases when more entities are returned... How to solve that? On Thursday, January 14, 2010 1:34:31 PM UTC-2, mdipierro wrote: > > l = db().select(db.artikel.id,limitby=(0,10)) > > On Jan 14, 9:19 am, Johann Spies <[email protected]> wrote: > > What is the equivalent in DAL for > > > > l = db.executesql("select id from artikel limit 10;") > > > > Regards > > Johann >

