I am trying to connect to my free sql database that I opened in: www.freesqldatabase.com/account/.
When using this www.phpmyadmin.co/ admin tool I can get into the databse, add tables and all that. But i can't connect to this database from my project. using this code:
SqlConnection sql = new SqlConnection("Server=sql7.freesqldatabase.com;Database=sql7115***;User Id=sql7115***;Password =*****;");
sql.Open();
I get an SqlException saying that "Could not find the server". Am I missing something?
By the way i am getting those warnings and if i click "here" i see this.
P.S: When i ping the host with the right port (that was sent to me with the email) I get a reply, so it is probably listening.