-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaSqlCon.java
More file actions
321 lines (284 loc) · 12.2 KB
/
JavaSqlCon.java
File metadata and controls
321 lines (284 loc) · 12.2 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import java.sql.*;
import java.util.*;
import java.util.concurrent.locks.*;
public class JavaSqlCon {
//Information needed to get a connection with sql
private final String dbUrl = "jdbc:mysql://localhost/bookingSystem";
private final String name = "root";
private final String pass = "";
private Lock databaseEditLock = new ReentrantLock();
//A method that adds a new booking to the database
public String addBooking(String cId, String sId, String bDate, String bTime, String duration, String focus) {
String output = "";
databaseEditLock.lock();
if (timeSlotIsBooked(bDate, bTime)) {
databaseEditLock.unlock();
output = "Time-slot already booked" + " \n" + "";
return output;
} else {
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String add = "INSERT INTO Booking VALUES('" + generateNewBookingId() + "', '" + cId + "' ,'" + sId + "' ,'" + bDate + "' , '" + bTime + "' ,'" + duration + "' , '" + focus + "')";
//String add = "INSERT INTO Booking VALUES(?,?,?,?,?,?,?)";
//PreparedStatement statement = connection.prepareStatement(add);
/*statement.setString(1, generateNewBookingId());
statement.setString(2, cId);
statement.setString(3, sId);
statement.setString(4, bDate);
statement.setString(5, bTime);
statement.setString(6, duration);
statement.setString(7, focus); */
Statement statement = connection.createStatement();
int qty = statement.executeUpdate(add);
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
}
output = "Booking Successful" + " \n" + "";
return output;
}
//A method that lists all the bookings
public String listAllBookings() {
databaseEditLock.lock();
String output = "";
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT * FROM Booking";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
output += (results.getString(1) + " "
+ results.getString(2) + " "
+ results.getString(3) + " "
+ results.getString(4) + " "
+ results.getString(5) + " "
+ results.getString(6) + " "
+ results.getString(7) + " \n");
}
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
return output;
}
//A method that lists all bookings corresponding to a given staffId
public String listBookingsByStaff(String sId) {
databaseEditLock.lock();
String output = "";
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT * FROM Booking WHERE Booking.staffId = '" + sId + "'";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
output += (results.getString(1) + " "
+ results.getString(2) + " "
+ results.getString(3) + " "
+ results.getString(4) + " "
+ results.getString(5) + " "
+ results.getString(6) + " "
+ results.getString(7) + " \n");
}
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
return output;
}
//A method that lists all bookings corresponding to a given clientId
public String listBookingsByClient(String cId) {
databaseEditLock.lock();
String output = "";
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT * FROM Booking WHERE Booking.clientId = '" + cId + "'";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
output += (results.getString(1) + " "
+ results.getString(2) + " "
+ results.getString(3) + " "
+ results.getString(4) + " "
+ results.getString(5) + " "
+ results.getString(6) + " "
+ results.getString(7) + " \n");
}
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
return output;
}
//A method that lists all bookings corresponding to a given date
public String listBookingsByDate(String date) {
databaseEditLock.lock();
String output = "";
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT * FROM Booking WHERE Booking.bookingDate = '" + date + "'";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
output += (results.getString(1) + " "
+ results.getString(2) + " "
+ results.getString(3) + " "
+ results.getString(4) + " "
+ results.getString(5) + " "
+ results.getString(6) + " "
+ results.getString(7) + " \n");
}
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
return output;
}
//A method that updates all parameters of a booking
public String updateBooking(String bId, String cId, String sId, String bDate, String bTime, String duration, String focus) {
databaseEditLock.lock();
String output;
if (!bookingExists(bId)) {
databaseEditLock.unlock();
output = "Booking " + bId + " does not exist" + " \n" + "";
return output;
} else if (timeSlotIsBooked(bDate, bTime)) {
databaseEditLock.unlock();
output = "Time-slot already booked" + " \n" + "";
return output;
} else {
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String update = "UPDATE Booking SET clientId ='" + cId + "', staffId ='" + sId + "', bookingDate ='" + bDate + "', bookingTime ='" + bTime + "', duration ='" + duration + "', focus ='" + focus + "' WHERE bookingId = '" + bId + "'";
Statement statement = connection.createStatement();
int qty = statement.executeUpdate(update);
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
}
output = "Update Successful" + " \n" + "";
return output;
}
//A method that deletes existing bookings
public String deleteBooking(String bId) {
databaseEditLock.lock();
String output;
if (!bookingExists(bId)) {
databaseEditLock.unlock();
output = "Booking " + bId + " does not exist" + " \n" + "";
return output;
} else {
try {
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String delete = "DELETE FROM Booking WHERE bookingId = '" + bId + "'";
Statement statement = connection.createStatement();
int qty = statement.executeUpdate(delete);
connection.close();
} catch (SQLException ex) {
return "SQL error: " + ex.getMessage();
}
} finally {
databaseEditLock.unlock();
}
}
output = "Booking " + bId + " deleted successfully" + " \n" + "";
return output;
}
//A method that ge nerates a random number from 0 to 9
private int randomNum() {
double random = Math.random() * 10;
return (int) random;
}
//A method which generates a different unr
private String generateNewBookingId() {
List<String> list = new ArrayList<>();
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT bookingId FROM Booking";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
list.add(results.getString(1));
}
connection.close();
} catch (SQLException ex) {
System.out.println("SQL error: " + ex.getMessage());
}
String id = "B" + 0 + 0 + randomNum();
while (list.contains(id)) {
id = "B" + 0 + randomNum() + randomNum();
if (!list.contains(id)) {
return id;
}
}
return id;
}
//A method that checks the time slot of a booking has not been ised before
private boolean timeSlotIsBooked(String date, String time) {
boolean exists = false;
List<String> list = new ArrayList<>();
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT bookingDate, bookingTime FROM Booking";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
list.add(results.getString("bookingDate") + " " + results.getString("bookingTime"));
}
connection.close();
} catch (SQLException ex) {
System.out.println("SQL error: " + ex.getMessage());
}
if (list.contains(date + " " + time)) {
exists = true;
}
return exists;
}
//A method check if another method with the same name exist
private boolean bookingExists(String bId) {
boolean exists = false;
List<String> list = new ArrayList<>();
try {
Connection connection = DriverManager.getConnection(dbUrl, name, pass);
String sqlQuery = "SELECT bookingId FROM Booking";
Statement statement = connection.createStatement();
ResultSet results = statement.executeQuery(sqlQuery);
while (results.next()) {
list.add(results.getString("bookingId"));
}
connection.close();
} catch (SQLException ex) {
System.out.println("SQL error: " + ex.getMessage());
}
if (list.contains(bId)) {
exists = true;
}
return exists;
}
}