Hi,
I need to display dataset returned by a bean across multiple pages in jsp.
for eg. I have to display rows for the number of days in year across multiple
HTML pages.
Any suggestions?
Thanks.
sd.
Printable View
Hi,
I need to display dataset returned by a bean across multiple pages in jsp.
for eg. I have to display rows for the number of days in year across multiple
HTML pages.
Any suggestions?
Thanks.
sd.
You can store the dataset in session and keep on moving between different
pages. You can use CachedRowSet from java early access to reprasent serializable
rowset in session.
"sd" <sdeo@virtualogic.com> wrote:
>
>Hi,
>
>I need to display dataset returned by a bean across multiple pages in jsp.
> for eg. I have to display rows for the number of days in year across multiple
>HTML pages.
>
>Any suggestions?
>
>Thanks.
>
>sd.
Hi,
what would be a good solution if the resultset contains a million rows?
Rolf.
"Ruchi Dhar" <rdhar@verticalnet.com> wrote:
>
>You can store the dataset in session and keep on moving between different
>pages. You can use CachedRowSet from java early access to reprasent serializable
>rowset in session.
>
>"sd" <sdeo@virtualogic.com> wrote:
>>
>>Hi,
>>
>>I need to display dataset returned by a bean across multiple pages in jsp.
>> for eg. I have to display rows for the number of days in year across multiple
>>HTML pages.
>>
>>Any suggestions?
>>
>>Thanks.
>>
>>sd.
>
There isn't a good way to display a million rows to a person, no matter how
you try to break it down. If the person is looking for a specific row or a
small number of rows, the next step after getting a million-record result
set is to refine the search to yield a smaller, more useful, result set.
PC2
"Rolf" <rolf_huijbrechts@yahoo.com> wrote in message
news:3ad88e0b$1@news.devx.com...
>
> Hi,
>
> what would be a good solution if the resultset contains a million rows?
>
> Rolf.
>
> "Ruchi Dhar" <rdhar@verticalnet.com> wrote:
> >
> >You can store the dataset in session and keep on moving between different
> >pages. You can use CachedRowSet from java early access to reprasent
serializable
> >rowset in session.
> >
> >"sd" <sdeo@virtualogic.com> wrote:
> >>
> >>Hi,
> >>
> >>I need to display dataset returned by a bean across multiple pages in
jsp.
> >> for eg. I have to display rows for the number of days in year across
multiple
> >>HTML pages.
> >>
> >>Any suggestions?
> >>
> >>Thanks.
> >>
> >>sd.
> >
>