我正在编写一个访问MySql数据库的代码。数据库位于我们通过Web浏览器访问的服务器上
让我们说,
URL: http://cbm.goo.com/phpMyAdmin
Username: username
Password: password
上述用户名和密码用于通过网络浏览器访问MySql数据库。
Q1.
JDBC
编程中使用的数据库的数据库网址是什么?
我尝试了以下网址,但它无效
jdbc:mysql://cbm.goo.com:3306/scores?user=username&password=password
==========================编辑==================== ===============
我收到以下错误:
Communications link failure
The last packet successfully received from the server was 1,267,163,244,109 milliseconds ago. The last packet sent successfully to the server was 0 milliseconds ago.
答案 0 :(得分:3)
检查您的互联网连接是否未通过阻止访问端口3306的某种防火墙。
有些公司对可以使用哪些端口设置了限制。 Web服务器使用端口80,端口80通常打开以允许Web浏览。您的MySQL服务器正在使用端口3306.
答案 1 :(得分:2)