これが私のコードですMainWindow
:
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
QSqlDatabase connection = QSqlDatabase::addDatabase("QMYSQL");
connection.setHostName("localhost");
connection.setDatabaseName("dbname");
connection.setUserName("username");
connection.setPassword("Temp");
QTableView *view = new QTableView(this);
view->setMinimumSize(200, 200);
QSqlTableModel *model = new QSqlTableModel(this, connection);
model->setTable("users");
qDebug() << model->columnCount() << model->rowCount();
model->setEditStrategy(QSqlTableModel::OnManualSubmit);
model->select();
model->removeColumn(0); // don't show the ID
view->setModel(model);
view->show();
this->setWindowTitle("Showing Things");
}
私のmain.cpp
:
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}
私のデータベースにはデータが含まれていることを知っています。基本的には、ここの詳細な説明の例に従っています。
これは、コンパイルして実行したときに得られるものです。
私がこのようなものを期待するとき:
わかりません。
私は何が間違っているのですか?