i've asp.net(C#) application from which i'm connecting my sql which is hosted remotely.
i've given connection string as below
conn=new OdbcConnection("DRIVER={MySQL ODBC 3.51 Driver};SERVER=mysql67.secureserver.net;PORT=3306; DATABASE=erpdatabase;USER=erpdatabase;PASSWORD=tha nks;OPTION=3;");
then when i execute the application i'm getting the following error
Exception Details: Microsoft.Data.Odbc.OdbcException: ERROR [HY000] [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on '64.202.163.77' (10060) ERROR [HY000] [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on '64.202.163.77' (10060)
can anyone tell why i'm getting this error?
thanks in advance
Jyothi