Q: about returned records from MDB

Q: about returned records from MDB

am 28.11.2005 23:25:27 von Russell

When I call my ASP script to connect to my database, to return a series of
records, does the server cache the results and dump the series of records to
the screen all at the sametime? or does the server display each record on
the screen when it has been caught?
Basically, i want to know if there is a way to determine the speed of
returning from 1 > 100 records at runtime!
Any assistance would be greatly appreciated!

Re: about returned records from MDB

am 29.11.2005 00:12:38 von reb01501

Russell wrote:
> When I call my ASP script to connect to my database, to return a
> series of records, does the server cache the results and dump the
> series of records to the screen all at the sametime? or does the
> server display each record on the screen when it has been caught?
> Basically, i want to know if there is a way to determine the speed of
> returning from 1 > 100 records at runtime!
> Any assistance would be greatly appreciated!

It depends on if you have Response.Buffer = True, and it also depends on how
you are generating the html to be sent to the client.

Here are some options you should be looking at:
http://www.aspfaq.com/show.asp?id=2467

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Re: Q: about returned records from MDB

am 29.11.2005 21:43:41 von Paul

To show start and end times for all or a portion of an ASP page:

Response.Write "Start Time: " & Now() & "

"

Response.Write "End Time: " & Now() & "

"

Best regards,
J. Paul Schmidt, Freelance Web and Database Developer
http://www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips


Russell wrote:
> When I call my ASP script to connect to my database, to return a series of
> records, does the server cache the results and dump the series of records to
> the screen all at the sametime? or does the server display each record on
> the screen when it has been caught?
> Basically, i want to know if there is a way to determine the speed of
> returning from 1 > 100 records at runtime!
> Any assistance would be greatly appreciated!