QT14 how to save data in sqlite database with pushbutton

1. reedit the employinfo window like

QT14 how to save data in sqlite database with pushbutton_第1张图片

2.reedit the employinfo.cpp as


#include "employeeinfo.h"
#include "ui_employeeinfo.h"
#include "login.h"
#include <QMessageBox>
EmployeeInfo::EmployeeInfo(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::EmployeeInfo)
{
    ui->setupUi(this);
    if(!login::connOpen())
    {
        ui->label_sec_status->setText("Failed to open the database") ;

    }
    else
    {
        ui->label_sec_status->setText("Connected...") ;

    }
}

EmployeeInfo::~EmployeeInfo()
{
    delete ui;
}

void EmployeeInfo::on_pushButton_clicked()
{

    QString eid, name, surname, age;
    eid = ui->txt_eid->text();
    name =ui->txt_name->text();
    surname = ui->txt_surname->text();
    age = ui->txt_age->text();

    if(!login::connOpen())
    {
        qDebug() << "Failed to open the database";
        return ;
    }

    QSqlQuery qry;

    QString stmt = "insert into employeeinfo (eid,name,surname,age) values('"+ eid +"','"+ name +"','"+ surname +"','"+ age +"')";
    qry.prepare(stmt);
    if( qry.exec())
    {
        QMessageBox::information(this, tr("Save"), tr("Saved"));
        login::connClose();
    }
    else
    {
        QMessageBox::critical(this, tr("Error"), qry.lastError().text());
    }
}


你可能感兴趣的:(QT14 how to save data in sqlite database with pushbutton)