0
我有一個QTableView填充QSqlQueryModel。我試圖根據哪個RadioButton被選中來對錶格排序,但是當我按下它們時沒有任何事情發生。有一點我可以把它排序,但只有一次。我在這裏做錯了什麼?Qt TableView只排序一次
void MainWindow::on_openButton_clicked()
{
QString filePath = ui->lineEdit->text();
if(filePath != ""){
if(openDB(filePath)){
ui->debugLabel->setText("Database opened");
MainWindow::populateTable();
}else{
ui->debugLabel->setText("Unable to open database");
}
} else {
ui->debugLabel->setText("Path is empty");
}
}
void MainWindow::populateTable(){
if(readDB()){
ui->tableView->setModel(toast.dbModel);
}
}
void MainWindow::on_shootButton_toggled(bool checked)
{
if(checked){
ui->tableView->sortByColumn(0);
}
}
void MainWindow::on_winButton_toggled(bool checked)
{
if(checked){
ui->tableView->sortByColumn(1);
}
}
bool openDB(QString path){
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName(path);
return db.open();
}
bool readDB(){
if(db.isOpen()){
dbModel->setQuery("select * from test", db);
return true;
} else {
return false;
}
}