Nunca lo he hecho, pero creo que deberia funcionar con algun driver MYSQL
esto pille por ahi...
Código PHP:
<%
dim conn
dim conn_string
conn_string = "Driver={MySQL};Server=127.0.0.1;Port=3306;Database=test;Uid=test;Pwd=test"
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open(conn_string)
strQuery = "SELECT * FROM productos"
Set RS = conn.Execute(strQuery)
%>
<html>
<body>
<b>Resultados</b>
<br><br>
<%while not RS.eof%>
<%=RS("nombre")%> <%=RS("precio")%><br>
<%RS.MoveNext%>
<%wend%>
</body>
</html>
espero te sirva