gpt4 book ai didi

c++ - Qt sql查询失败

转载 作者:可可西里 更新时间:2023-11-01 08:20:58 26 4
gpt4 key购买 nike

query->prepare("INSERT INTO businessweek (id, source, date, headline, body) VALUES (NULL, ?, ?, ?, ?)");
query->bindValue(1, "source");
query->bindValue(2, "date");
query->bindValue(3, "headline");
query->bindValue(4, "body");

if (query->exec()) {
tt << "Query success";
} else {
qDebug() << db.lastError();
return;
}

我正在使用 QMYSQL。而错误是

 QSqlError(-1, "", "") 

但是

query->exec("INSERT INTO businessweek (id, source, date, headline, body) VALUES (NULL, 'google', 'may 0, 23', 'head', 'fjsdflksjdlkfdsjlfkjd');")

工作正常。

最佳答案

很难猜出问题所在。但是我能想象到的一件事是您的代码肯定有问题的是 bindValue 的字段编号从 0 开始(请参阅 here )。

因此,我建议尝试一下

query->prepare("INSERT INTO businessweek (id, source, date, headline, body) VALUES (NULL, ?, ?, ?, ?)");
query->bindValue(0, "source");
query->bindValue(1, "date");
query->bindValue(2, "headline");
query->bindValue(3, "body");

if (query->exec()) {
tt << "Query success";
} else {
qDebug() << db.lastError();
return;
}

关于c++ - Qt sql查询失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10561240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com