Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified

/Untitled-1.asp, line 9

e il codice in questione è questo per maggior chiarezza ho numerato le linee e il problema è sulla 9 (Recordset1_cmd.ActiveConnection = MM_clineti2_STRING ) ma non capisco che errore c'è. se qualcuno può aiutarmi. grazie


1 <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
2
3 <%
4 Dim Recordset1
5 Dim Recordset1_cmd
6 Dim Recordset1_numRows
7
8 Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
9 Recordset1_cmd.ActiveConnection = MM_clineti2_STRING
10 Recordset1_cmd.CommandText = "SELECT * FROM User"
11 Recordset1_cmd.Prepared = true
12
13 Set Recordset1 = Recordset1_cmd.Execute
14 Recordset1_numRows = 0
15 %>
16 <%