如何使用 Java 桌面应用程序访问共享托管数据库

发布于 2024-11-26 18:21:58 字数 149 浏览 0 评论 0原文

我正在寻找我的一个问题的解决方案。我开发了一个Java桌面应用程序。我在共享 php 托管服务器中有一个数据库。有没有可能的方法将共享托管数据库与我的 Java 桌面应用程序连接起来。我如何与共享数据库服务器执行定时数据库同步

提前感谢

Mujahid

I was looking for a solution for one of my questions. I have developed a Java desktop application. I have a database in a shared php hosting server. Is there any possible way to connect the shared hosting database with my Java desktop application. And how can I perform timed database synchronization with the shared database server

Thanks in advance

Mujahid

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

北陌 2024-12-03 18:21:58

如果共享托管提供商允许 SSH 文件传输,请检查是否可以创建到数据库服务器的隧道,并将桌面应用程序配置为使用该隧道进行连接。

If the shared hosting provider allows SSH file transfers, check to see if you can create a tunnel to the database server, and configure your desktop application to use that tunnel to connect.

贱人配狗天长地久 2024-12-03 18:21:58

可能不会,出于安全原因,%99,99 的共享托管服务器不允许这样做。

但是,您可以编写一个与服务器端的数据库交互的网关 php 字符串。然后,您可以从您的 Java 应用程序连接到此 php 脚本:

您的 Java 应用程序 <-> php 脚本 <->数据库

Probably not, for security reasons %99,99 of shared hosting servers would not allow that.

However you can programm a gateway php string that interacts with db on the server side. Then you can connect to this php script from your java app:

your java app <-> php script <-> db

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