-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.h
47 lines (43 loc) · 1.02 KB
/
database.h
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
#ifndef DATABASE_H
#define DATABASE_H
#include <QObject>
#include <QString>
#include <QtSql>
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QSqlQueryModel>
#include <QString>
#include <QHeaderView>
#include <QMainWindow>
#include <QTableWidget>
#include <QPropertyAnimation>
#include <QStackedWidget>
#include <QGraphicsEffect>
#include "qtmaterialraisedbutton.h"
#include "qtmaterialtextfield.h"
#include "qtmaterialsnackbar.h"
#include "qtmaterialradiobutton.h"
#include <QLabel>
#include <qradiobutton.h>
class Database : public QObject
{
Q_OBJECT
private:
QSqlDatabase db;
bool loading;
public slots:
bool createconnect();
void closeconnection();
bool loginconnection(QString,QString);
void showtable();
void changetable();
bool updatetable(int,QString,QString,QString,QString);
bool deletetable(int);
void addproduct(QString,QString,QString,QString);
public:
QTableWidget *table;
~Database();
explicit Database(QObject *parent = nullptr);
signals:
};
#endif // DATABASE_H