Qt Creator 中的连接数据库
如何使用 QT4 和 Qt Creator 连接到 MySQL 数据库?我不知道我应该如何进行,如果有人可以帮助我。
How do I connect to the MySQL database using QT4 and Qt Creator? I have no idea how I should proceed, if anyone can help me please..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题很浅薄,但我会尝试提供一些资源,因为这在许多搜索中都显示在顶部。
首先,您必须为您的操作系统编译 QtCreator 的 MYSQL 驱动程序。
对于 Windows,请检查
QT MySql使用 Windows XP、Qt Creator 4.5.2(Windows 32 位)进行连接
MacOS(可能还有 Linux)的说明可以在此处找到
http://www.qtcentre.org/threads/45296-QSqlDatabase- QMYSQL-driver-not-loaded
一旦你的qt安装包含mysql驱动程序,你就可以使用数据库了(QSqlDatabase)(developer.qt.nokia.com/doc/qsqldatabase.html) 类。从这里复制:
之后,您可以使用QSqlQuery来处理数据库句柄,例如
并打印结果,如
代码未经过测试,但 Qt 文档应该澄清所有细节
this question is very shallow, but i will try to provide some ressources as this shows up pretty on top on many searches.
First of all, you will have to compile the MYSQL driver for the QtCreator for your operating system.
For Windows, check
QT MySql connectivity using Windows XP, Qt Creator 4.5.2(windows 32 bit)
Instructions for MacOS (and probably Linux) can be found here
http://www.qtcentre.org/threads/45296-QSqlDatabase-QMYSQL-driver-not-loaded
Once your qt install includes the mysql driver, you can use the database with the (QSqlDatabase)(developer.qt.nokia.com/doc/qsqldatabase.html) class. Copying from here:
After that, you can use QSqlQuery to work with the database handle, e.g.
and print the results like
Code is not tested, but the Qt Documentation should clarify all details