I am trying to update my form with the following code by the form won't save the edits.
Code:
tableModel->select(); query.prepare(sqlQuery); query.bindValue(":firstname", ui.fEdit->text()); query.bindValue(":lastname", ui.lnEdit->text()); query.bindValue(":country", ui.cEdit->text()); query.bindValue(":city", ui.cityEdit->text()); query.bindValue(":id", recordz.value("id").toInt()); query.exec(); tableModel->submitAll();

