Fw: Re: Urgent:Displaying 10 records in one page

2000-06-12 Thread Pratik
- Original Message - From: Pratik [EMAIL PROTECTED] To: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] Sent: Saturday, June 10, 2000 11:08 AM Subject: Re: Re: Urgent:Displaying 10 records in one page Hi I want to clear some doubts about

Re: Urgent:Displaying 10 records in one page

2000-06-10 Thread Kishore Raghavan
, 2000 6:16 PM To: [EMAIL PROTECTED] Subject: Re: Urgent:Displaying 10 records in one page Hi , I've done a similar exercise where I had to display only n number of records from the database. In the JSP bean I declared a Vector and wrote set and get methods for that. I also wrote a method wherein

Re: Urgent:Displaying 10 records in one page

2000-06-10 Thread David Wall
So if you retrieve a large amount of data and also if you get larger number of requests , your server may go out of memory. Surely storing the data in session works faster (obviously) but it is not very scaleable. I agree in the common case, but a servlet container can be made smart enough to

Urgent:Displaying 10 records in one page

2000-06-09 Thread Aggarwal, Pawan
Hi, I am using a servlet to display 10 out of nth records got from the database.. The servlet is using a helper class to get Hashtable.. Now the same servlet will be called to display to another 10 records... How do I store the Hashtable so that the next time it reads the servlet It displays

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Tamanna Kher
2000 01:05:44 PM Please respond to A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc:(bcc: Kher Tamanna-SWD-ITIL-UB/Itilmail) Subject: Urgent:Displaying 10 records in one page Hi, I am using a servlet to display 10

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Sharan, Abhishek
: Urgent:Displaying 10 records in one page Hi, I am using a servlet to display 10 out of nth records got from the database.. The servlet is using a helper class to get Hashtable.. Now the same servlet will be called to display to another 10 records... How do I store the Hashtable so

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Aggarwal, Pawan
June 2000 12:06 To: [EMAIL PROTECTED] Subject:Urgent:Displaying 10 records in one page Hi, I am using a servlet to display 10 out of nth records got from the database.. The servlet is using a helper class to get Hashtable.. Now

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Doug Turner
different browser instances. In our experience, anyway. - Original Message - From: Aggarwal, Pawan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 09, 2000 5:37 AM Subject: Re: Urgent:Displaying 10 records in one page I got a suggestion that I should place the Hashtable

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Sivakumar Sankarasubramanian
PROTECTED]]On Behalf Of Aggarwal, Pawan Sent: Friday, June 09, 2000 4:38 AM To: [EMAIL PROTECTED] Subject: Re: Urgent:Displaying 10 records in one page I got a suggestion that I should place the Hashtable containing the records from the query in the session Now there is a problem There is a

Re: Urgent:Displaying 10 records in one page

2000-06-09 Thread Pratik
more memory utilizaiton Am I right or wrong ? If right any other solution? thanks pratik - Original Message - From: Sivakumar Sankarasubramanian [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 10, 2000 6:45 AM Subject: Re: Urgent:Displaying 10 records in one page Hi

Urgent:Displaying 10 records in one page

2000-06-08 Thread Aggarwal, Pawan
Hi, I am using a servlet to display 10 out of nth records got from the database.. The servlet is using a helper class to get Hashtable.. Now the same servlet will be called to display to another 10 records... How do I store the Hashtable so that the next time it reads the servlet It displays