scusa mi puoi postare un esempio di connessione?

il provider mi da solo quello che utilizzo io:
codice:
<%
Set conn = Server.CreateObject("ADODB.Connection")
conn.Open "driver={MySQL ODBC 3.51 Driver};server=mysql41.sqlhosting.it;
port=3306;uid=nomeutente;pwd=passwprd;database=nomedb;"
interrogazione = "select * from test"
rs = Server.CreateObject("ADODB.Recordset")
set rs = conn.execute(interrogazione)
html_risultato = ""
do while not(rs.eof)
    html_risultato = html_risultato & "<tr>"
    html_risultato = html_risultato & "<td> " & rs("id") & "</td>"
    html_risultato = html_risultato & "<td>" & rs("descrizione") & "</td>"
    html_risultato = html_risultato & "</tr>"
    rs.movenext
loop
rs.close
conn.close
set rs = nothing
set conn = nothing
%>
è hosting solutions