Re: QueryForList : How does maxRows work?

2007-05-13 Thread Clinton Begin
With a good database driver, you wouldn't get 1000s of rows back anyway, whether it supported fetchSize or not. And most good database drivers will have an intelligent default for fetch size, or even a self-optimizing one that you won't want to mess with. However, if you want to test it out with

Re: QueryForList : How does maxRows work?

2007-05-13 Thread BenBaril
Can you explain how to set the fetch size? As this is something I would be curious in. We are mostly concerned about the cost of the bandwidth, as we don't want to get back 1000s of rows when we only want a few douzain. Clinton Begin wrote: > > PS: if it hasn't been made clear by my previous po