Re: Problem with QTableView
you understand?
how i can update the QTableView?
Re: Problem with QTableView
To be honest: no, I do not understand your problem.
Do you want the QSqlTableModel to track changes in the database so your view always show the "live" state and updates as modifications are made?
If yes:
bad luck. you will need to peridically (QTimer)call select() to refresh the contents of the model.
(As far as I know Qt does not support databases that push changes to clients. I might be wrong, though.)
Was that your question?