I have a task: make a connection between Xamarin.Android and MySql DB, wich is located on db4free.net
Everything works for PC, but for Android there is an exeception:
Why is it so?
the code is:
string myConnectionString = "Server=www.db4free.net;Port=3306;User Id=****;Password=****;Database=****;OldGuids=True";
MySqlConnection connection = new MySqlConnection(myConnectionString);
connection.Open();
....