QSqlTableModel类继承至QSqlQueryModel类,该类提供了一个可读写单张SQL表的可编辑数据模型,功能:修改,插入,删除,查询,和排序
常用函数
QVariant headerData ( int section,Qt::Orientation orientation, int role = Qt::DisplayRole ) const 获取水平头或垂直头标题
bool setHeaderData ( int section,Qt::Orientation orientation, const QVariant & value, int role = Qt::EditRole ) 设置水平头或垂直头标题
int rowCount ( const QModelIndex & parent= QModelIndex() ) const // 返回行数
int columnCount ( const QModelIndex &index = QModelIndex() ) const // 返回列数
virtual bool removeColumns ( int column, int count, const QModelIndex & parent = QModelIndex() ) //model->removeColumns (0)删除第一列
bool QSqlTableModel::submitAll (),//提交所有被修改的数据,然后修改的数据被保存在数据库中
void QSqlTableModel::revertAll () //撤销所有的修改,如果数据库已经被提交了修改,就不能通过撤销修改改回来了
virtual void revertRow ( int row ) //恢复指定行的改变
void QSqlTableModel::setFilter ( const QString & filter ) //筛选,按照字符串filter对数据库进行筛选,相当于SQL中的WHERE语句
bool QSqlTableModel::select () //在筛选和排序的条件下,将数据库中符合要求的在mode表格中显示出来
void QSqlTableModel::setSort ( int column, Qt::SortOrder order ) //排序操作。按照列和Qt::SortOrder排序。Qt::SortOrder有升序和降序
bool insertRow ( int row, const QModelIndex & parent = QModelIndex() ) //插入行
bool insertColumn ( int column, constQModelIndex & parent = QModelIndex() ) // 插入列
model->setEditStrategy(QSqlTableModel::OnManualSubmit); //设置保存策略为手动提交
一、在QTableView中显示数据库中表的数据
- QSqlTableModel *model = new QSqlTableModel(parentObject, database);
- model->setTable("employee");
- model->setEditStrategy(QSqlTableModel::OnManualSubmit);
- model->select();
- model->removeColumn(0);
- model->setHeaderData(0, Qt::Horizontal, tr("Name"));
- model->setHeaderData(1, Qt::Horizontal, tr("Salary"));
-
- QTableView *view = new QTableView;
- view->setModel(model);
- view->show();
二、修改QTableView中数据后的提交,加入事务处理
- model->database().transaction();
- if (model->submitAll())
- {
- model->database().commit();
- } else {
- model->database().rollback();
- QMessageBox::warning(this, tr(“tableModel”),tr(“数据库错误: %1″).arg(model->lastError().text()));
- }
- model->revertAll();
三、查询操作
相当于SQL语句:SELECT * FROM 表名 WHERE name = "name变量"
- model->setFilter(QObject::tr(“name = ‘%1′”).arg(name));
- model->select();
- for (int i = 0; i < model.rowCount(); ++i)
- {
- QString name = model.record(i).value("name").toString();
-
- }
-
-
- int primaryKeyIndex = model.record().indexOf("id");
- for (int i = 0; i < model.rowCount(); ++i)
- {
- QSqlRecord record = model.record(i);
- QString name = record.value("name").toString();
-
- }
四、排序操作
- model->setSort(0,Qt::AscendingOrder);
- model->select();
五、插入操作
- int rowNum = model->rowCount();
- int id = 最后一个ID+1;
- model->insertRow(rowNum);
- model->setData(model->index(rowNum,0),id);
- model->submitAll();
六、删除一条记录
首先要定位到待删除的行上
- model.setFilter("id = 10");
- model.select();
- if (model.rowCount() == 1)
- {
- model.removeRows(0,1)
- model.submitAll();
- }
在QTableView中删除选中的一行
- int curRow = tableView->currentIndex().row();
- model->removeRow(curRow);
在QTableView中删除选中的多行
QAbstractItemView::SelectionModeselectionMode()const // 原型
QModelIndexList QItemSelectionModel::selectedIndexes()const //原型
- QItemSelectionModel *selections = tableView->selectionModel();
- QModelIndexList selecteds = selections->selectedIndexes();
- foreach (QModelIndex index, selecteds)
- {
- int curRow = index.row();
- model->removeRow(curRow);
- }
-
- int ok = QMessageBox::warning(this,tr("删除选中的行!"),tr("你确定删除当前选取中的行吗?"),QMessageBox::Yes,QMessageBox::No);
- if(ok == QMessageBox::Yes)
- {
- model->submitAll();
- } else {
- model->revertAll();
- }
七、更新记录
必须先定位记录
- model.setFilter("id = 10");
- model.select();
- if (model.rowCount() == 1)
- {
- model.setData(model.index(0,1),QObject::tr("小王"));
- model.submitAll();
- }
可以看到这个模型很强大,而且完全脱离了SQL语句,就算你不怎么懂数据库,也可以利用它进行大部分常用的操作。这个模型提供了缓冲区,可以将所有修改先保存到model中,只有当我们执行提交修改后,才会真正写入数据库。当然这也是因为我们在最开始设置了它的保存策略:
model->setEditStrategy(QSqlTableModel::OnManualSubmit);
OnManualSubmit表明我们要提交修改才能使其生效。可以先将修改保存起来,当我们执行提交函数时,再去真正地修改数据库。当然,这个模型比前面的模型更高级,前面讲的所有操作,在这里都能执行。