Innanzitutto voglio dirvi che ho provato a cercare una soluzione a questo problema in tutta la rete, ma non sono riuscito a trovare nulla.

Questo è il codice:

codice:
Set Conn = Server.CreateObject("ADODB.Connection")
Set Comm = Server.CreateObject("ADODB.Command")
Set Rs = Server.CreateObject("ADODB.Recordset")
 
Conn.CommandTimeout = 40
Conn.CursorLocation = 1
Conn.ConnectionString = "driver={MySQL};db=milanodance;uid=root;pwd="
Conn.Open
 
Comm.ActiveConnection = Conn
Comm.CommandType = 1
 
Comm.CommandText = "Select * From Utenti Where NomeAccount = '" & NomeAccount & "' Limit 1"
 
Rs.Open Comm, , 1, 1
Mi genera quest'errore sulla riga rossa:

codice:
Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)
Il driver ODBC non supporta le proprietà richieste.
Sto impazzendo!!!