Talk:How to Use a QSqlQueryModel in QML: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Clarification on source code)
 
No edit summary
Line 10: Line 10:


Thanks,
Thanks,
Please note that ListView.positionViewAtIndex(), and possibly other methods of ListView, won't work with model, which inherits from QSqlQueryModel. For these methods to work, you have to inherit from QAbstractListModel and override its virtual functions, where you place your database querying.

Revision as of 17:12, 7 March 2016

This code has helped me so much, but I want to understand it further.

Could anyone help me with question about the codes (under generic approach):

1. Is "m_roleNames" a QSqlQueryModel private variable that is used internally?

  I didn't see it being called in "sqlquerymodel.cpp"

2. At "SqlQueryModel::data" function, why would the columnIdx derived from = role - Qt::UserRole - 1;

  Perhaps someone could share with me how does this function translate from QML role into QSqlQueryModel::data(modelIndex, Qt::DisplayRole);

Thanks,


Please note that ListView.positionViewAtIndex(), and possibly other methods of ListView, won't work with model, which inherits from QSqlQueryModel. For these methods to work, you have to inherit from QAbstractListModel and override its virtual functions, where you place your database querying.