我的qui上有一个按钮。当我点击它时,它必须根据连接信息连接数据库。
这是我的代码:
void MainWindow::on_pushButton_clicked(){
db = QSqlDatabase::addDatabase("QPSQL");
db.setHostName("localhost");
db.setDatabaseName("Assignment3");
db.setUserName("postgres");
db.setPassword("password");
db.setPort(5432);
bool ok = db.open();
if(ok != true)
{
QMessageBox::information(this,"Connection","Connection Failed!") ;
}
else
{
QMessageBox::information(this,"Connection","Connection OK!") ;
QSqlQueryModel model;
model.setQuery("select * from students ");
//ui->tableView->setModel(&model);
QMessageBox::information(this,"Information","This Message box is needed in order to see the rendered tableview!") ;
}
}
主机名、数据库名、用户名、密码和端口是正确的,并且我在 postgresql 中的数据库处于活动状态,其中不包含表。
任何帮助表示赞赏。提前致谢。