Ask a Question related to Coldfusion Database Access, Design and Development.
-
BKBK #1
Re: cfquery with maxrows = faster processing ?
Yes, there is an increase in speed, as returning 10 rows is less work than
returning 50, but that may not be the whole story. Most of a query's work is
done in getting the result set from the database in the first place. I presume
that Coldfusion would have been designed in such a way that it caches the full
result set in a buffer, even though it only returns a maxrows of 10. If so,
then the overall increase in speed from using maxrows will not be significant.
In any case, I even wonder whether it's any use thinking of speed gains for row
numbers as small as 50.
BKBK Guest
-
cfquery with maxrows supposed to be faster?
The query speed will not be affected. The page will load more quickly though, if you are displaying only 10 rows of data rather than 50. How long... -
cfoutput cfquery "group processing" error
I am attempting to write data to an html table from three different Access tables. I have three (3) queries in the cftransaction, each later query... -
Using Maxrows with Nested Output
This seems so simple but how does MAXROWS work with nested queries that are grouped? If you apply it at the top level it limits the number of... -
CFQUERY and maxrows attribute
ok, maybe I'm on some bad crack today, but I recall that the maxrows attribute of cfquery works AFTER the resultset is returned to CF from the DB. ... -
CFGRID ? maxRows
I agree with ArtNirvana. If you have maxRows then is reasonable to have page navigation and also you can think about record locator based on sort... -
PaulH *TMM* #2
Re: cfquery with maxrows = faster processing ?
BKBK wrote:
depends on the db & db driver. in something like sql server when the> done in getting the result set from the database in the first place. I presume
> that Coldfusion would have been designed in such a way that it caches the full
> result set in a buffer, even though it only returns a maxrows of 10. If so,
resultset reaches the maxrows value processing stops on the server.
something like access probably gets the whole resultset & that is truncated.
PaulH *TMM* Guest



Reply With Quote

