代码拉取完成,页面将自动刷新
同步操作将从 清风暖酒/学生管理系统 Qt +MySQL 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef VIEW_MYSQL_H
#define VIEW_MYSQL_H
#include <QWidget>
#include<QSqlDatabase>
#include<QSqlQueryModel>
#include<QPushButton>
#include<QVector>
#include<QMap>
namespace Ui {
class view_Mysql;
}
class view_Mysql : public QWidget
{
Q_OBJECT
public:
explicit view_Mysql(QWidget *parent = nullptr);
~view_Mysql();
QSqlDatabase sdb;
QSqlQueryModel *Qmodel;
QString sqlCommand;
bool insertInto(QSqlDatabase db,int id,QString name,int age,QString sex,int score);//增
bool deleInnfo(int id);//删
bool modify(QString to_2,QString to_3,QString to_4,QString to_5);//改
QSqlQuery lookInfo(QString to_2,QString to_3);//查
int rowNum;
QVector<int>saveRow;
//const QPushButton* getButton();
QMap<int,QString>ColumnName;
int action=0;//用于save按钮判断是保存添加操作还是保存修改操作 1 添加 2 修改
void clearTableWidget();
QList<QStringList> sendData();
private slots:
void on_btn_add_clicked();
void on_btn_dele_clicked();
void on_btn_modify_clicked();
void on_btn_quit_clicked();
void on_btn_query_clicked();
void on_btn_save_clicked();
void on_btn_search_clicked();
void on_comboBox_activated(int index);
void on_btn_download_clicked();
private:
Ui::view_Mysql *ui;
//数据库信息
const QString hostname="127.0.0.1";
const int port=3306;//mysql默认端口
const QString user="root";
const QString password="123456";
const QString databaseName="studentmanage";
QString table_login="login";
QString table_student="student";
};
#endif // VIEW_MYSQL_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。