> But how your tag will work when I will have about 100000(0) > records? How I understud you, I must to convert all records > into ArrayList... imo it's not good idea :(
I'm willing to bet you're get better performance from converting all your items (to an ArrayList) vs. shoving them into your JSP and then closing the connection. > How must I work with huge datasets using your taglib? > > Can I send to tag only part of records and say to them how > many pages must be shown? You could set a session variable for each user that indicates page size, use this in the tab library and also use it in your JDBC (+the "page" parameter) to calculate the 20 records to bring back for each page (or whatever the number is). HTH, Matt ------------------------------------------------------- This SF.NET email is sponsored by: eBay Great deals on office technology -- on eBay now! Click here: http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 _______________________________________________ displaytag-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/displaytag-user

