RE: DataView vs ListView

2009-01-07 Thread Ames, Tim
have several users searching and returning large Lists in memory, you may not be too happy with those results either :) -Original Message- From: Dane Laverty [mailto:danelave...@chemeketa.edu] Sent: Tuesday, January 06, 2009 8:08 PM To: users@wicket.apache.org Subject: DataView vs ListView

Re: DataView vs ListView

2009-01-07 Thread Peter Ertl
in memory, you may not be too happy with those results either :) -Original Message- From: Dane Laverty [mailto:danelave...@chemeketa.edu] Sent: Tuesday, January 06, 2009 8:08 PM To: users@wicket.apache.org Subject: DataView vs ListView I've been trying to understand when DataView would

Re: DataView vs ListView

2009-01-07 Thread Jim Pinkham
, 2009 8:08 PM To: users@wicket.apache.org Subject: DataView vs ListView I've been trying to understand when DataView would come in handy. I have a SQL database table with about 1,000,000 rows. The user can enter a search string, and my application returns a list of all the rows that match

RE: DataView vs ListView

2009-01-07 Thread Ames, Tim
it took me a lot of research to find this one! -Original Message- From: Jim Pinkham [mailto:pinkh...@gmail.com] Sent: Wednesday, January 07, 2009 10:07 AM To: users@wicket.apache.org Subject: Re: DataView vs ListView Also, in MySQL syntax, you've got stuff like this that gets you right

DataView vs ListView

2009-01-06 Thread Dane Laverty
I've been trying to understand when DataView would come in handy. I have a SQL database table with about 1,000,000 rows. The user can enter a search string, and my application returns a list of all the rows that match the search string. This list might be over 10,000 rows. At first I thought

Re: DataView vs ListView

2009-01-06 Thread Jeremy Thomerson
This is totally dependent on your implementation. From what you write, I gather that your expense is doing the search - therefore querying the search for every page might be very expensive. For me, I use Lucene to do the search, and then only load the exact rows I want, so it is much more