Qt Creator 中的连接数据库

发布于 2024-12-24 23:56:53 字数 65 浏览 1 评论 0原文

如何使用 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 技术交流群。

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

发布评论

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

评论(1

傲影 2024-12-31 23:56:53

这个问题很浅薄,但我会尝试提供一些资源,因为这在许多搜索中都显示在顶部。

首先,您必须为您的操作系统编译 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) 类。从这里复制:

QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
db.setHostName("localhost");
db.setDatabaseName("mysql");
db.setUserName("root");
db.setPassword("rootPW");
if (!db.open()) qDebug() << "Failed to connect to root mysql admin";

之后,您可以使用QSqlQuery来处理数据库句柄,例如

QSqlQuery query("SELECT * FROM mysql",db);

并打印结果,如

while (query.next()) {
  qDebug() << "first column:" << query.value(0).toString();
}

代码未经过测试,但 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:

QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
db.setHostName("localhost");
db.setDatabaseName("mysql");
db.setUserName("root");
db.setPassword("rootPW");
if (!db.open()) qDebug() << "Failed to connect to root mysql admin";

After that, you can use QSqlQuery to work with the database handle, e.g.

QSqlQuery query("SELECT * FROM mysql",db);

and print the results like

while (query.next()) {
  qDebug() << "first column:" << query.value(0).toString();
}

Code is not tested, but the Qt Documentation should clarify all details

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