View Single Post
Old Jan 19th, 2006, 11:07 AM   #12
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
In that case, if all you want to do is print the rates out:
sql = "select rate from mort"
set recset = adocon.execute(sql)

Do While Not recset.eof
  Response.Write recset.Fields(0)
  recset.moveNext
Loop
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote