º click the banner, i dare you
º blah
º ?
º oh yeah
º www.lagoonamusic.com
º yeah, good site!
º ENGLAND!
º a nice site
º suk muh ***** fellas
º www.taftman.com
º oops, I guess I was thinking
out loud too
º oh man, pedifiles are losers
º oops,damn must stop thinking
out aloud
º i like boning small boys
º sloppycode.net
º =P
º testing
º rant rant rant!!!
º wham
º interesting --
8 users online
ASP + Access benchmark script
Here is the script used for the ASP and Access part of the benchmark tests, using a dsn-less connection.
<%
Dim Conn,RS,SQL,DSN
DSN = "DBQ=" & Server.Mappath("benchmark.mdb") & ";Driver={Microsoft Access Driver (*.mdb)};"
Set RS = Server.CreateObject("ADODB.Recordset")
Set Conn = Server.CreateObject("ADODB.Connection")
' Start time
Response.Write "Started: " & Hour(Now()) & ":" & Minute(Now()) & ":" & Second(Now()) & "<br>"
Conn.Open DSN
SQL = "SELECT * FROM table"
RS.Open SQL,Conn,1,2
Do While Not RS.EOF
i = i +1
RS.MoveNext
Loop
' End Time
Response.Write "Finished: " & Hour(Now()) & ":" & Minute(Now()) & ":" & Second(Now()) & "<br>"
Response.Write i & " records found."
%>