penguinspeaks
Technical User
I am sure an answer is out there somewhere.
We had to upgrade our server to MySql 5.5
Hey wonderful and great. My issue is now my connection strings will not work and I get the following error:
I am using MySql DB within a classic asp environment but I know this is not the problem.
My connection string is as follows:
I have tried to change the driver to 5.5 with no luck. I know the problem lies with the driver and the version of MySql.
I have tried over a dozen different strings but all give the same result.
Any Ideas?
We had to upgrade our server to MySql 5.5
Hey wonderful and great. My issue is now my connection strings will not work and I get the following error:
Code:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
/inc/connection.asp, line 8
I am using MySql DB within a classic asp environment but I know this is not the problem.
My connection string is as follows:
Code:
<%
Dim sConnection, objConn , objRS
sConnection = "DRIVER={MySQL ODBC 3.51 Driver}; SERVER=localhost; DATABASE=mydbname; UID=tmyuserid;PASSWORD=mypassword; OPTION=3"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open(sConnection)
%>
I have tried to change the driver to 5.5 with no luck. I know the problem lies with the driver and the version of MySql.
I have tried over a dozen different strings but all give the same result.
Any Ideas?