-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.h
106 lines (93 loc) · 2.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#ifndef _DATABASE_H_INCLUDED_
#define _DATABASE_H_INCLUDED_
#include <pqxx/pqxx>
#include <iostream>
#include <signal.h>
class Database {
public:
pqxx::connection *connection;
pqxx::nontransaction *work;
bool has_connection = false;
void connect() {
if(has_connection) return;
try
{
this->connection = new pqxx::connection("dbname=carwash user=washman password=cotton");
this->work = new pqxx::nontransaction(*this->connection);
has_connection = true;
std::cout << "DATABASE CONNECTED" << std::endl;
}
catch (const pqxx::sql_error &e)
{
std::cerr << "SQL error: " << e.what() << std::endl;
std::cerr << "Query was: " << e.query() << std::endl;
raise(SIGINT);
}
catch (const std::exception &e)
{
std::cerr << "Error: " << e.what() << std::endl;
raise(SIGINT);
}
}
void disconnect() {
if(!has_connection) return;
this->connection->disconnect();
std::cout << "DATABASE DISCONNECTED" << std::endl;
}
void prepareStatement(const char* statementName, const char* query)
{
try {
this->connection->prepare(statementName, query);
}
catch (const pqxx::sql_error &e)
{
std::cerr << "SQL error: " << e.what() << std::endl;
std::cerr << "Query was: " << e.query() << std::endl;
raise(SIGINT);
}
catch (const std::exception &e)
{
std::cerr << "Error: " << e.what() << std::endl;
raise(SIGINT);
}
}
pqxx::prepare::invocation beginPrepared(const char *statementName)
{
return this->work->prepared(statementName);
}
pqxx::result execPrepared(pqxx::prepare::invocation prepared)
{
pqxx::result R;
try {
R = prepared.exec();
}
catch (const pqxx::sql_error &e)
{
std::cerr << "SQL error: " << e.what() << std::endl;
std::cerr << "Query was: " << e.query() << std::endl;
}
catch (const std::exception &e)
{
std::cerr << "Error: " << e.what() << std::endl;
}
return R;
}
pqxx::result execQuery(std::string query)
{
pqxx::result R;
try {
R = this->work->exec(query);
}
catch (const pqxx::sql_error &e)
{
std::cerr << "SQL error: " << e.what() << std::endl;
std::cerr << "Query was: " << e.query() << std::endl;
}
catch (const std::exception &e)
{
std::cerr << "Error: " << e.what() << std::endl;
}
return R;
}
};
#endif