Hi,

I have a table full of records and would like to retrieve only the 15
most recent records, sorted by their creation date.

I've tried using the limitby= argument to select() in the DAL, but the
online book only shows one example that uses limitby to select 2
records starting from 0, ie. limitby=(0,2).

However, if I'd like to select the 15 most recent records, the
database offset most likely isn't going to be 0. What should I pass to
limitby in this case?

//Ruiwen

Reply via email to