How to get data from sqlquery that result 3 columns in a row and show only 1 Colum and use the other columns data
Page |
1 |
hello all
im using QSqlQueryModel subclass to excute sql querys and popolate them to tableview
now i have simple sql query that results 3 coulms / fields in arow that invoked in the QSqlQueryModel subclas like this :
- {
- }
now later i set this to show me only foo3 in the table view that contains 1 column
what i need is that the data from foo1 and foo2 and set in the the UserRole of each row in the tableview ( i have itemDelegate of the tableView ) and show in the display only foo3
how can it be done ?
27 replies
hi
Thanks for the replay but i didnt understand it .
in the data subclass method i did :
- QVariant value;
- int c = index.column();
- int r = index.row();
- {
- }
- if(c ==2)
- {
- return value;
- }
- value ="";
- return value;
but it still show me in the result 3 columns , and only in the third the display
i dont what to display 3 columns only one
The way I see it, you have two options:
- Just hide the columns you don’t want to see in the view. QTableView supports the hideColumn(int column) method for that.
- Use a QSortFilterProxyModel to hide the columns you don’t want, by subclassing that class and reimplementing the filterAcceptsColumn method to return false for the columns you want to hide.
hi and thanks for the replay i tryed to use hideColumn but it didnt work
- m_pPlayListMiniItemDelegate =new PlayListMiniItemDelegate(this);
- ui->PlayListMini_tableView->setItemDelegate(m_pPlayListMiniItemDelegate);
- ui->PlayListMini_tableView->setAlternatingRowColors(true);
- ui->PlayListMini_tableView->setModel(PlayListMiniSqlModel::instance());
- ui->PlayListMini_tableView->hideColumn(0);
- ui->PlayListMini_tableView->hideColumn(1);
i want to avoid to add yet another model to the stack
Hi but now i have another problem , in the proxy model
i set to filter the 2 first columns like this :
- bool PlayListMiniSortFilterProxyModel::filterAcceptsColumn(int source_column, const QModelIndex& index) const
- {
- //qDebug() << "filterAcceptsColumn(): column = " << source_column ;
- if(source_column ==2)
- return false;
- }
and in the PlayListMiniSqlModel ( its the QSqlQueryModel im using in the table)
when i try to get the display string of the hidden 2 columns i only get the 3 column .
- {
- QVariant value;
- int c = index.column(); //HERE IT ONLY SHOW ME 2 , NEVER 0 and 1
- int r = index.row();
- {
- }
- return value;
- }
where in the model i can get the hidden column data ?
im using QSortFilterProxyModel to filter column that im getting from QSqlQueryModel model but becose the filterAcceptsColumn method is const “all the way” i have problem to set Qt::UserRole data in the right index . how can i overcome this?
- bool MiniSortFilterProxyModel::filterAcceptsColumn(int source_column, const QModelIndex& index) const
- {
- QVariant tmp ;
- if(source_column ==0)
- {
- // here im getting compilation error
- //: error C2678: binary '=' : no operator found which takes a left-hand operand of type 'const QString' (or there is no acceptable conversion)
- return false;
- }
- else if(source_column ==1)
- {
- return false;
- }
- else if(source_column ==2)
- {
- setNewData(index);
- }
- return false;
- }
- {
- // here also compilation error:
- m_rowId = rowId.toString();
- }
- {
- / here also compilation error:
- m_ytId = ytId.toString();
- }
- {
- // here also compilation error:
- //error C2511: 'void MiniSortFilterProxyModel::setNewData(QModelIndex &) const' : //overloaded member function not found in 'MiniSortFilterProxyModel'
- }
Hi but now i have another problem , in the proxy model
i set to filter the 2 first columns like this :
bool PlayListMiniSortFilterProxyModel::filterAcceptsColumn(int source_column, const QModelIndex& index) const { //qDebug() << "filterAcceptsColumn(): column = " << source_column ; if(source_column ==2) return false; }and in the PlayListMiniSqlModel ( its the QSqlQueryModel im using in the table)
when i try to get the display string of the hidden 2 columns i only get the 3 column .
{ QVariant value; int c = index.column(); //HERE IT ONLY SHOW ME 2 , NEVER 0 and 1 int r = index.row(); { } return value; }where in the model i can get the hidden column data ?
That sounds logical to me. The data() method will be called by the view or proxy model on top of the model. That object will (as much as possible) only query for the items it needs. In this case, that would be column 2, not column 0 or 1, as your proxy hides these. Why do you expect this method to be called for all cells, even the ones you’re not showing?
im using QSortFilterProxyModel to filter column that im getting from QSqlQueryModel model but becose the filterAcceptsColumn method is const “all the way” i have problem to set Qt::UserRole data in the right index . how can i overcome this?
I fail to understand why you’d need to modify the model from your filterAcceptsColumn() implementation.
very simple , sorry im not native English speaker so the semantics are wrong (most of the time..).
what im trying to do is very simple ( very simple in the logic of it )
1. run sql query that returns 3 columns in each row (“select foo1,foo2,foo3 from tbl”)
2. use the data from column 1 and 2 ( concat the 2 strings )
3. set it to column 3 Qt::UserRole placeholder ( i need it for later use ) that in the end becomes the only row that is displayed
4 this is for each row / record that returns from the sql query
You must log in to post a reply. Not a member yet? Register here!



