Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Data from my DB is in a QVariantList and I want to loop through it and get firstname out.

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

This produces:

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.") ) )  ) 

How can I just debug the value of "firstname"? Eg debug = Glenford.

Thanks

share|improve this question
That doesnt help, how can I target first name? – user1013512 Nov 25 '12 at 21:01
2  
Looking at Qt Docs I think that sqlData.value (i).toMap().value ("firstname"); might work for you. – Aleksandar Nov 25 '12 at 21:08
That produces: QVariant(QString, "Glenford") Do you know how to just output Glenford? – user1013512 Nov 25 '12 at 21:17
1  
Try value<QString> on QVariant(QString, "Glenford") and please look at the docs for relatively simple problems like this. – Aleksandar Nov 25 '12 at 21:18
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.