Re: jsp to oracle technique: paging display of large recordsets

2000-05-12 Thread David Edmister
** -Original Message- From: James Klicman [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 11, 2000 10:28 PM To: [EMAIL PROTECTED] Subject: Re: jsp to oracle technique: paging display of large recordsets I've used it. :-) By looping data source I mean any loop construc

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread James Klicman
out. thanks! > > -Original Message----- > From: John Cartwright [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 11, 2000 3:05 PM > To: [EMAIL PROTECTED] > Subject: Re: jsp to oracle technique: paging display of large recordsets > > > This looks like a very elegant so

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread David Edmister
i'll see how far with it i geat and give you and example. anybody else who has used the "pager" tag, please help out. thanks! -Original Message- From: John Cartwright [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 11, 2000 3:05 PM To: [EMAIL PROTECTED] Subject: Re: jsp to

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread John Cartwright
This looks like a very elegant solution, but I'm afraid that the example is not basic enough for me. What is meant by a "looping data source"? It looks like another taglib is being used, but I don't see any other reference to it. Thanks for any help or clarification! --john Kent Symanzik wrote

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Chris Ernenwein
To: [EMAIL PROTECTED] Subject: Re: jsp to oracle technique: paging display of large recordsets I would never use that approach ;-) If you store the ResultSet in a session you also need to store the Connection in that session. Since, when you close the connection, the ResultSet is closed as well

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Humphreys, Kirk
han Hoover [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 11, 2000 8:55 AM To: [EMAIL PROTECTED] Subject: Re: jsp to oracle technique: paging display of large recordsets Basically your best bet would be to stuff your ResultSet into and HTTPSession object. Then, you could rs.next() 20 times, then the

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Geert Van Damme
donderdag 11 mei 2000 14:55 > To: [EMAIL PROTECTED] > Subject: Re: jsp to oracle technique: paging display of large recordsets > > > Basically your best bet would be to stuff your ResultSet into and > HTTPSession object. Then, you could rs.next() 20 times, then the > user

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Kent Symanzik
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 11, 2000 8:54 AM Subject: Re: jsp to oracle technique: paging display of large recordsets > Basically your best bet would be to stuff your ResultSet into and > HTTPSession object. Then, you could rs.next() 20 times, then the

Re: jsp to oracle technique: paging display of large recordsets

2000-05-11 Thread Nathan Hoover
Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of David Edmister Sent: Wednesday, May 10, 2000 8:28 PM To: [EMAIL PROTECTED] Subject: jsp to oracle technique: paging display of large recordsets i'm somewhat new to jsp and oracle but i need a solution that a

jsp to oracle technique: paging display of large recordsets

2000-05-10 Thread David Edmister
i'm somewhat new to jsp and oracle but i need a solution that allows me to grab only "n" number of records at a time from a "large resultset" for display purposes. for example, i query and get 200 records but i want to display (forward and backward OR next and previous) 10 (or n number of records