ChrisHasenpflug
Programmer
I'm having problems accessing the mySQL database via ASP. IIS and mySQL are running on the same machine. The error message I get is:
The connection.asp script reads as follows:
I have also tried using a DSN connection and recieve the same error message
Everywhere I look on the internet I can't seem to get anything to work.
Does anyone have a suggestion for me to try??
Code:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[TCX][MyODBC]Can't create TCP/IP socket (10093)
/mysql/connection.asp, line 4
The connection.asp script reads as follows:
Code:
<!--#include file="adovbs.inc"-->
<%
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open = "driver={MySQL};server=localhost;uid=root;pwd=password;database=Trading"
%>
I have also tried using a DSN connection and recieve the same error message
Everywhere I look on the internet I can't seem to get anything to work.
Does anyone have a suggestion for me to try??