forked from JT117/KFet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cfenetreajoutproduit.cpp
74 lines (57 loc) · 1.95 KB
/
cfenetreajoutproduit.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include "cfenetreajoutproduit.h"
#include "ui_cfenetreajoutproduit.h"
CFenetreAjoutProduit::CFenetreAjoutProduit(QWidget *parent) :
QDialog(parent),
ui(new Ui::CFenetreAjoutProduit)
{
ui->setupUi(this);
connect(ui->ppbFAPAnnuler,SIGNAL(clicked()),this,SLOT(close()));
connect(ui->ppbFAPboutonOK,SIGNAL(clicked()),this,SLOT(ajouter()));
this->afficher();
}
CFenetreAjoutProduit::~CFenetreAjoutProduit()
{
delete ui;
}
void CFenetreAjoutProduit::ajouter()
{
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setHostName("localhost");
db.setDatabaseName("kfet");
bool baseOuverte = db.open();
if( baseOuverte )
{
QSqlQuery query;
query.exec("INSERT INTO Product (nom, prix) VALUES ( '" + ui->pleFAPnomproduit->text() + "', '" + ui->pleFAPprix->text() + "' )");
db.close();
}
else
{
QMessageBox::warning( this, "Avertissement", "La base de donnes n'a pas pu tre ouverte." );
}
}
void CFenetreAjoutProduit::afficher()
{
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setHostName("localhost");
db.setDatabaseName("kfet");
bool baseOuverte = db.open();
if( baseOuverte )
{
QSqlQuery query;
query.exec( "SELECT * FROM PRODUCT;");
qDebug() << endl;
while( query.next() )
{
int id = query.value(0).toInt(); // on recupere l'id ne pas oublier la convertion dans le bon type
QString nom = query.value(1).toString(); // recuperation du nom
QString prix = query.value(2).toString(); // recuperation du prix
qDebug() << "ID : " << id << " Produit : " << nom << " " << prix;
}
db.close();
}
else
{
QMessageBox::warning( this, "Avertissement", "La base de donnes n'a pas pu tre ouverte." );
}
}