我们通过 phpMyAdmin 访问的 mysql 数据库的数据库 URL 是什么?

发布于 2024-08-22 15:04:13 字数 666 浏览 1 评论 0原文

我正在编写访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忘你却要生生世世 2024-08-29 15:04:14

检查您的互联网连接是否通过某种阻止访问端口 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文