Q: about returned records from MDB

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!
Russell [ Mo, 28 November 2005 23:25 ] [ ID #1077981 ]

Re: about returned records from MDB

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"
reb01501 [ Di, 29 November 2005 00:12 ] [ ID #1077982 ]

Re: Q: about returned records from MDB

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

Response.Write "Start Time: " & Now() & "<br><br>"

Response.Write "End Time: " & Now() & "<br><br>"

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!
Paul [ Di, 29 November 2005 21:43 ] [ ID #1079787 ]
Webserver » microsoft.public.inetserver.asp.db » Q: about returned records from MDB

Vorheriges Thema: Getting a correctly formatted table from a GetRows array
Nächstes Thema: Suddenly ODBC driver does not work