is that possible?
Since the QSqlQuery used in the model has to be on the same thread always when used, I cannot just simply do a
@
QtConcurrent::run([=]{
model->select();
});
@
So I would have to move my model creation and preparation to a QThread probably?