Hello

I have a QTableView with a QSqlTableModel as its model.

The problem is that the newly added rows will be displayed at the end of the view, no matter what is the value of row.

Documentation of QSqlTableModel::insertRows says: "Inserts count empty rows at position row." and in QAbstractItemModel::insertRows it says: "inserts count rows into the model before the given row."

If "into the model" means it has no predicted effect on the view, what's the use of row?