MySQL Connector problemer
Hvad kan det være galt..Database jeg har forsøger at connecte til har det rigtige navn?
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/testmysql.asp, line 18
med denne connect string får jeg samme fejl..
SQLserveradr="localhost"
SQLdatabase="database"
SQLlogin="root"
SQLpassword=""
Set Conn = Server.CreateObject("ADODB.Connection")
conStr = "driver={MySql}"
conStr = conStr & ";server="& SQLserveradr
conStr = conStr & ";database="& SQLdatabase
conStr = conStr & ";uid="& SQLlogin
conStr = conStr & ";pwd="& SQLpassword
conStr = conStr & ";OPTION=16386"
Conn.Open conStr
Så er det jo jeg ligner et stort ?
//brisom