Qt 数据库模块是否支持通过网络连接远程数据库?

发布于 2024-07-30 01:34:23 字数 126 浏览 3 评论 0原文

我正在分析一些 API,看看哪一个适合这个项目。

我希望我的 Qt 应用程序通过互联网连接到数据库。 Qt 可以单独使用客户端应用程序来完成此操作吗?还是我需要编写一个服务器应用程序来坐在数据库服务器上并处理查询?

I'm profiling some APIs to see which one is suitable for this project.

I want my Qt app to connect to a database over an internet connection. Can Qt do this with the client application alone or do I need to write a server app to sit on the database server and transact the queries?

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

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

发布评论

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

评论(1

も让我眼熟你 2024-08-06 01:34:23

只要数据库引擎支持(大多数都支持!),您就可以通过 TCP/IP 完美地连接到数据库。 请参阅文档中的示例,它有一个 db.setHostName ("acidalia"); 连接到该主机上的 PostgreSQL 数据库...

You can perfectly well connect to databases over TCP/IP as long as the database engine supports that (most do!). See the example in the docs, it has a db.setHostName("acidalia"); to connect to a PostgreSQL database on that host...

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