forked from wwderw/embTools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.h
79 lines (49 loc) · 1.13 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
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
74
75
76
77
78
79
#ifndef DATABASE_H
#define DATABASE_H
#include <QDialog>
#include <QTableView>
#include <QSqlDatabase>
#include <QDebug>
namespace Ui {
class database;
}
class database : public QDialog
{
Q_OBJECT
//Functions for Database
QSqlDatabase mydb;
void connClose()
{
mydb.close();
mydb.removeDatabase(QSqlDatabase::defaultConnection);
};
bool connOpen()
{
mydb = QSqlDatabase::addDatabase("QSQLITE");
mydb.setDatabaseName("assets/client.db");
if (!mydb.open())
{
qDebug()<<("Connection Failed!!");
return false;
}else
{
qDebug()<<("Connected");
return true;
}
};
//End functions for database
public:
explicit database(QWidget *parent = nullptr);
~database();
private slots:
void on_addClient_clicked();
void on_delete_2_clicked();
void on_update_clicked();
void on_sortName_clicked();
void on_sortBus_clicked();
void on_clientVendor_activated(const QString &arg1);
void on_export_2_clicked();
private:
Ui::database *ui;
};
#endif // DATABASE_H