Hello,
I'm building a c# windows application which will connect with the mysql database in a remote server.
I'm using the following connect script
P.S: Mysql database is at eu5.org server
Any help ???
I'm building a c# windows application which will connect with the mysql database in a remote server.
I'm using the following connect script
It shows the error couldn't connect to the database.string connectionString;
connectionString = "SERVER = eu5.org;UID = myuserid; PASSWORD = mypassword; DATABASE= mydatabasename;";
connection = new MySqlConnection(connectionString);
P.S: Mysql database is at eu5.org server
Any help ???