RE: Design Doubt

2003-03-26 Thread Raible, Matt
Easiest way without too many details (lots of opinions on getting data from database): 1. Put data into an ArrayList of Beans (forms, POJOs, whatever). 2. Use display tag library for display/sorting/paging - http://displaytag.sf.net (it's open source, so if you want to improve it feel free!)

RE: Design Doubt

2003-03-26 Thread Jagadeesan,Sivakumar
[mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 5:16 PM To: 'Struts Users Mailing List' Subject: RE: Design Doubt Easiest way without too many details (lots of opinions on getting data from database): 1. Put data into an ArrayList of Beans (forms, POJOs, whatever). 2. Use display tag

RE: Design Doubt

2003-03-26 Thread Hookom, Jacob John
. -Original Message- From: Raible, Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 5:16 PM To: 'Struts Users Mailing List' Subject: RE: Design Doubt Easiest way without too many details (lots

RE: Design Doubt

2003-03-26 Thread Jagadeesan,Sivakumar
PM To: Struts Users Mailing List Subject: RE: Design Doubt Create an action that takes in the start id and the quantity to scroll over, and your query (total of 3 params). Read up on your DB specific SQL language for specifying a start id and max rows to return (not applicable for this mailing

RE: Design Doubt

2003-03-26 Thread Jacob Hookom
| To: 'Struts Users Mailing List' | Subject: RE: Design Doubt | | Thanx Jacob | Initially I was wondering that querying to request base will be a | performance issue. If even the big sites are doing this way, then I | guess | it should not be a problem | | | -Original Message- | From

RE: Design Doubt

2003-03-26 Thread Jagadeesan,Sivakumar
Thanx Jacob I am using Hibernate for Data Access Layer. It is cool -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 5:50 PM To: 'Struts Users Mailing List' Subject: RE: Design Doubt Dao's like OJB will help you with performance. I