QSqlQuery not positioned on a valid record(QSqlQuery 未定位在有效记录上)
问题描述
我正在尝试选择日期库中的一个字段,代码是:
I'm trying select a field of my date base, the code is:
if (db.db().isOpen())
{
qDebug() << "OK";
QSqlQuery query("SELECT state FROM jobs WHERE jobId = '553'", db.db());
qDebug() << query.value(0).toString();
}
else
qDebug() << "No ok";
查询是正确的,因为当我执行 qDebug() <<query.size;
,返回1
.
The query is correct because when I do qDebug() << query.size;
, it returns 1
.
但是使用 qDebug() <<
OK
QSqlQuery::value: not positioned on a valid record
""
我该如何解决?
推荐答案
在访问返回的数据之前,您应该调用 query.first()
.此外,如果您的查询返回多于一行,您应该通过 query.next()
进行迭代.
You should call query.first()
before you can access returned data. additionally if your query returns more than one row, you should iterate via query.next()
.
这篇关于QSqlQuery 未定位在有效记录上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:QSqlQuery 未定位在有效记录上
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01