如何从另一个用于搜索数据库的 QSqlQuery 获取 QModelIndex(选择找到的项目所需)
我在处理 QSqlQueryModel 时遇到问题。我想在数据库中搜索某些项目,并在 QTableView 中使用需要 QModelIndex 的 QItemSelectionModel 选择它们。
我不明白的是我应该如何搜索才能获取模型/视图架构的相应 QModelIndex 。 我不可能使用模型本身,因为它会弄乱视图中显示的项目。因此,QSqlQuery 或额外的 QSqlQueryModel 可能是一个选项,但是如何从它们的结果索引(.at()?)转换为适合我的模型/视图系统的 QModelIndex...
提前致谢!
I have a problem when dealing with my QSqlQueryModel. I want to search the database for some items and select them in my QTableView with QItemSelectionModel which needs a QModelIndex.
What I don't understand is how should I search in order to get the corresponding QModelIndex for my model/view architecture.
I can't possibly use the model itself, because it would mess up the items shown in the view. So a QSqlQuery or an extra QSqlQueryModel would maybe be an option, but how is it possible to translate from their result-index (.at()?) to a QModelIndex which fits to my Model/View-System...
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是查看 QSQLQueryModel,并设置 TableView 的模型到它。
The easiest way is to take a look at QSQLQueryModel, and set your TableView's model to it.