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/

10-13 05:34