然后更改maincpp的内容如下-QT界面设计 时间:2024-05-16 03:18:16 【文件属性】: 文件名称:然后更改maincpp的内容如下-QT界面设计 文件大小:13.53MB 文件格式:PPT 更新时间:2024-05-16 03:18:16 QT 初学者 然后更改main.cpp的内容如下: #include #include “widget.h” #include “connection.h” int main(int argc, char *argv[]) { QApplication a(argc, argv); if (!createConnection()) return 1; Widget w; w.show(); return a.exec(); } 可以看到,我们是在主函数中打开数据库的,而数据库连接用一个函数完成,并单独放在一个文件中,这样的做法使得主函数很简洁。我们今后使用数据库时均使用这种方法。我们打开数据库连接后,新建了一个学生表,并在其中插入了几条记录。 立即下载