ADO is an excellent way to access a database in VBScript/Classic ASP.

    Dim db: Set db = Server.CreateObject("ADODB.Connection")
    db.Open "yourconnectionstring -> see connectionstrings.com"
    Dim rs: Set rs = db.Execute("SELECT firstName from Employees")
    While Not rs.EOF
        Response.Write rs("firstName")
        rs.MoveNext
    Wend
    rs.Close


More info here: http://www.technowledgebase.com/2007/06/12/vbscript-how-to-create-an-ado-connection-and-run-a-query/

One caveat is that if you are returning a MEMO field in a recordset, be sure you only select ONE MEMO field at a time, and make sure it is the LAST column in your query.  Otherwise you will run into problems.
(Reference: http://lists.evolt.org/archive/Week-of-Mon-20040329/157305.html )