Hi guys. Here's my problem.
I have a Windows Form application which connects to a mysql database by using ODBC Driver. It works fine on localhost. Now what I intend to do is to connect this application to a mysql database that is in a hosting provider's mysql server. I am using 000webhost.com which is a really good free hosting site for testing.
I have this connection string in my application:
@"Driver={MySQL ODBC 5.1 Driver};Server=xxx.000webhost.com;Database=xxx_scm;User=xxx_root;Password=xxx_root;";
The data that I entered here were given by 000webhost.com. But when I try to run my application using that connection string, it doesn't work. Any help? :)