I encountered the same problem and yes implemented pagination myself in my current project.
On Fri, Feb 22, 2008 at 5:04 PM, syg6 <[EMAIL PROTECTED]> wrote: > > I have a table with 150,000 records. When I call this object's > manager.getAll() it tries to load them all at once. This, of course, makes > my pc crap the bed. I was wondering what my options are. > > I suppose one option is to call my own method, instead of getAll(), > getSome(int startRecord, int howManyRecordsToLoad) which is fine but since > in all the list pages displayTag is in charge of pagination, won't this > mean > that I have to handle pagination myself? After all, displayTag only > handles > pagination for the records you pass to it. If I only load 1,000 of the > 150,000 records, displayTag will paginate 1,000 records and never show the > other 149,000. > > What's my best option here? > > Many thanks, > Bob > -- > View this message in context: > http://www.nabble.com/Too-many-records%21-tp15630061s2369p15630061.html > Sent from the AppFuse - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Ealden Esto E. Escañan http://blog.ealden.net
