我们通过 phpMyAdmin 访问的 mysql 数据库的数据库 URL 是什么?
我正在编写访问 MySql 数据库的代码。数据库位于我们通过网络浏览器访问的服务器上比方
说,
网址:http://cbm.goo.com/phpMyAdmin
用户名:用户名
密码:密码
以上用户名和密码用于访问通过网络浏览器访问 MySql 数据库。
Q1.
JDBC
编程中使用的数据库的数据库 url 是什么?
我尝试了以下网址,但没有成功
jdbc:mysql://cbm.goo.com:3306/scores?user=用户名&password=密码
==================== ====== 已编辑 =====================================
我收到以下错误:
通讯链路故障
最后一次从服务器成功接收的数据包是在 1,267,163,244,109 毫秒前。最后一次成功发送到服务器的数据包是在 0 毫秒前。
I am writing a code that access a MySql database. The database is on a server that we access through our web-browser
Let's say,
URL: http://cbm.goo.com/phpMyAdmin
Username: username
Password: password
The above username and password are used to access the MySql database through a web-browser.
Q1.
What would be database url of the database to be used in JDBC
programming?
I tried the following url but it didn't work
jdbc:mysql://cbm.goo.com:3306/scores?user=username&password=password
========================== Edited ===================================
I am getting the following error:
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查您的互联网连接是否通过某种阻止访问端口 3306 的防火墙。
一些公司对可以使用的端口设置了限制。 Web 服务器使用端口 80,通常开放该端口以允许 Web 浏览。您的 MySQL 服务器正在使用端口 3306。
Check that your internet connection is not going through some sort of firewall that is blocking access to port 3306.
Some companies have restricitions set on which ports can be used. Web servers use port 80 which is usually opened up to allow web browsing. Your MySQL server is using port 3306.
将 JDBC 与 MySQL 结合使用快速入门指南
Using JDBC with MySQL quick start guide