如何在 QTableView 中显示 SQLite table
How do I display a SQLite table in a QTableView
我正在尝试连接到本地数据库并在 QTableView 中显示 table。我目前正在连接到我的数据库,但每当我尝试将我的查询附加到 QTableView 框时,我得到 QSqlError("", "Unable to find table projects", "")
。当我在 SQLite 的数据库浏览器中 运行 SELECT * FROM projects
时,我在 table 中的条目出现了。这是我的 mainwindow.h:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "purchaseorder.h"
#include <QtSql>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
PurchaseOrder *newpo = new PurchaseOrder();
QSqlDatabase db;
bool openDB(){
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName("projectmanager.db");
if(!db.open())
{
qDebug()<<"Error opening database" << db.lastError();
return false;
}else{
qDebug()<<"Connection Established.";
return true;
}
}
void closeDB(){
db.close();
//db.removeDatabase(QSqlDatabase::defaultConnection);
}
private slots:
void on_actionProject_2_triggered();
private:
Ui::MainWindow *ui;
PurchaseOrder purchaseorder;
};
#endif // MAINWINDOW_H
这是我的 mainwindow.cpp 的片段:
#include "mainwindow.h"
#include <QDebug>
#include <QSqlQueryModel>
#include <QtSql>
void MainWindow::on_actionProject_2_triggered() // Load PROJECT table
{
QSqlTableModel* modal = new QSqlTableModel();
MainWindow conn;
conn.openDB();
modal->setTable("projects");
modal->select();
ui->tableView->setModel(modal);
qDebug()<<modal->lastError();
conn.close();
}
我相信一切都在进行中。 modal->setTable("projects");
此外,我的 projectmanager.db
文件存储在 /db/projectmanager.db
中,但是当我将其放入我的数据库路径时,它不会连接,但它会按照我的方式连接?感谢您的帮助,我们将不胜感激。
描述项目数:
CREATE TABLE `projects` ( `project_id` INTEGER PRIMARY KEY AUTOINCREMENT,
`project_name` TEXT,
`client` INTEGER,
`lead_employee` INTEGER,
`description` TEXT,
`start_date` TEXT,
`deadline` TEXT,
`status` INTEGER )
创建模型之前必须先打开连接,另一方面又没有必要再创建一个MainWindow,所以解决方法是:
void MainWindow::on_actionProject_2_triggered()
{
openDB();
QSqlTableModel *modal = new QSqlTableModel;
modal->setTable("projects");
modal->select();
ui->tableView->setModel(modal);
closeDB();
}
我正在尝试连接到本地数据库并在 QTableView 中显示 table。我目前正在连接到我的数据库,但每当我尝试将我的查询附加到 QTableView 框时,我得到 QSqlError("", "Unable to find table projects", "")
。当我在 SQLite 的数据库浏览器中 运行 SELECT * FROM projects
时,我在 table 中的条目出现了。这是我的 mainwindow.h:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "purchaseorder.h"
#include <QtSql>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
PurchaseOrder *newpo = new PurchaseOrder();
QSqlDatabase db;
bool openDB(){
db = QSqlDatabase::addDatabase("QSQLITE");
db.setDatabaseName("projectmanager.db");
if(!db.open())
{
qDebug()<<"Error opening database" << db.lastError();
return false;
}else{
qDebug()<<"Connection Established.";
return true;
}
}
void closeDB(){
db.close();
//db.removeDatabase(QSqlDatabase::defaultConnection);
}
private slots:
void on_actionProject_2_triggered();
private:
Ui::MainWindow *ui;
PurchaseOrder purchaseorder;
};
#endif // MAINWINDOW_H
这是我的 mainwindow.cpp 的片段:
#include "mainwindow.h"
#include <QDebug>
#include <QSqlQueryModel>
#include <QtSql>
void MainWindow::on_actionProject_2_triggered() // Load PROJECT table
{
QSqlTableModel* modal = new QSqlTableModel();
MainWindow conn;
conn.openDB();
modal->setTable("projects");
modal->select();
ui->tableView->setModel(modal);
qDebug()<<modal->lastError();
conn.close();
}
我相信一切都在进行中。 modal->setTable("projects");
此外,我的 projectmanager.db
文件存储在 /db/projectmanager.db
中,但是当我将其放入我的数据库路径时,它不会连接,但它会按照我的方式连接?感谢您的帮助,我们将不胜感激。
描述项目数:
CREATE TABLE `projects` ( `project_id` INTEGER PRIMARY KEY AUTOINCREMENT,
`project_name` TEXT,
`client` INTEGER,
`lead_employee` INTEGER,
`description` TEXT,
`start_date` TEXT,
`deadline` TEXT,
`status` INTEGER )
创建模型之前必须先打开连接,另一方面又没有必要再创建一个MainWindow,所以解决方法是:
void MainWindow::on_actionProject_2_triggered()
{
openDB();
QSqlTableModel *modal = new QSqlTableModel;
modal->setTable("projects");
modal->select();
ui->tableView->setModel(modal);
closeDB();
}