简体   繁体   中英

connection to MySql database on host

I have a problem regarding connecting to my database that is located on my website host server. I have watched few tutorials, took a look on few articles here on stack overflow and read official mysql documentation, and i steel can't connect to it thru my c# console app. This is my code:

string connstring = string.Format("Server=www.vm-consult.com; Database=vmconsul_sitedatabase; Uid=vmconsul_mijovicpetar; Pwd=mypassword");
MySqlConnection connection = new MySqlConnection();
connection.ConnectionString = connstring;

connection.Open();

I have also went to c panel in remote MySQL tab and set "%" to my remote sql hosts.

All the parameters for con string are correct. In server in connection string I also tried to set IP address, did not change anything.

This is exception I get(on the last line: connection.open()):

Unable to connect to any of the specified MySQL hosts.

Any suggestions appreciated. Thanks.

检查连接

telnet www.vm-consult.com 3306

I needed to contact my host provider to enable external connection to the database. Thanks everybody.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM