如何在 Android 中通过 JDBC 连接到 PostgreSQL 服务器?

发布于 2024-10-17 05:12:24 字数 143 浏览 2 评论 0原文

我必须在没有 Web 服务的情况下连接到 LAN 中的 PostgreSQL 服务器。 目前我认为JDBC是我能考虑的唯一方法。

我怎样才能实现这个目标?是否有任何现成的第三方库可以导入到我的 Android 项目中?

任何回复将不胜感激。

I have to connect to a PostgreSQL server in LAN without web service.
At the moment I think JDBC is the only way I can consider of.

How can I fulfill this? Is there any ready-to-use 3rd party library I can import to my Android project?

Any reply would be appreciated.

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

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

发布评论

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

评论(2

心是晴朗的。 2024-10-24 05:12:24

您可以在 pgandroid 邮件列表上找到有关部署 JDBC 驱动程序以与 PostgreSQL 对话的人们。这里有一些例子,如果您遇到问题,这是寻求帮助的正确地方。我相信常规 .jar 文件适用于最新的 Android 版本,但您可能需要修补一些内容以添加与旧 Android 版本的兼容性。

如果您不想使用 Java/JDBC,另一个选择是使用 psqldroid 库。

You can find people talking about deploying the JDBC driver to talk to PostgreSQL on the pgandroid mailing list. Some examples there and if you run into problems that's the right place to ask for help. I believe the regular .jar files work fine with recent Android versions, but you may have to patch things to add compatibility with older Android versions.

The other option if you don't want to use Java/JDBC is to use the psqldroid library.

辞取 2024-10-24 05:12:24

如果移动设备和数据库服务器之间的直接连接确实是您想要的(没有安全问题),那么您不需要任何额外的库?我猜只是在 android 上部署 JDBC 驱动程序...?

另一种选择是在 PosgreSQL 服务器前面创建一个迷你 Web 服务器,其中包含 JDBC 驱动程序。然后您可以定义一个通过 HTTP 发送/接收 SQL/结果集的简单协议。这样做的优点是,您的应用程序在移动设备上占用的空间更小。

If a direct connection between mobile devices and the database server is really what you want (no security concerns) then you wouldn't need any additional library? Just deploy the JDBC driver on android, I guess...?

An other option would be to create a mini web server in front of the PosgreSQL server, containing the JDBC driver. Then you could define a simple protocol of sending/receiving SQL/resultsets via HTTP. The advantage of this is, your application footprint on the mobile device is smaller.

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