3

我的数据库中的数据位于 QVariantList 中,我想遍历它并获取名字。

QVariantList sqlData = database->loadDatabase("quotes.db", "quotes");
for (int i = 1; i <= sqlData.size(); i++)
    {
        qDebug() << sqlData.value(i);
    }

这会产生:

Debug: QVariant(QVariantMap, QMap(("firstname", QVariant(QString, "Glenford") ) ( "id" ,  QVariant(qlonglong, 2) ) ( "lastname" ,  QVariant(QString, "Myers") ) ( "quote" ,  QVariant(QString, "We try to solve the problem by rushing through the design process so that enough time will be left at the end of the project to uncover errors that were made because we rushed through the design process.") ) )  ) 

我怎样才能调试“名字”的值?例如调试 = Glenford。

谢谢

4

1 回答 1

5

QVariant 列表是 QVariants 的列表,对象有一个特定的迭代器。

QVariantList sqlData = database->loadDatabase("quotes.db", "quotes");
for (QVariantList::iterator j = sqlData.begin(); j != sqlData.end(); j++)
{
    qDebug() << "iterating through QVariantList ";
    qDebug() << (*j).toString(); // Print QVariant
}
于 2013-08-13T14:51:58.143 回答