Qt 数据库模块是否支持通过网络连接远程数据库?
我正在分析一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要数据库引擎支持(大多数都支持!),您就可以通过 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...