-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemControl.java
More file actions
285 lines (228 loc) · 10.6 KB
/
ItemControl.java
File metadata and controls
285 lines (228 loc) · 10.6 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
package src.anearcan;
import java.sql.*;
import java.util.ArrayList;
import javax.sql.*;
/*
* This is used to control all
*/
class ItemControl{
private Game game;
private Video video;
public Utility utility;
public ItemControl() throws SQLException{
utility = new Utility();
}
public void purchaseVid(Video video){
try {
utility.connect();
ResultSet rs = utility.stmt.executeQuery("SELECT * FROM movies WHERE id = "+ Integer.toString(video.getProductID()));
while(rs.next()) {
// Retrieve the auto generated key(s).
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
rs.updateInt("noOfCopies", (rs.getInt("noOfCopies")- 1));
rs.updateRow();
System.out.println("# of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
video.setNoOfCopies(rs.getInt("noOfCopies"));
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void purchaseGame(Game game){
try {
utility.connect();
ResultSet rs = utility.stmt.executeQuery("SELECT * FROM games WHERE id = "+ Integer.toString(game.getProductID()));
while(rs.next()) {
// Retrieve the auto generated key(s).
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
rs.updateInt("noOfCopies", (rs.getInt("noOfCopies")- 1));
rs.updateRow();
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
game.setNoOfCopies(rs.getInt("noOfCopies"));
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void returnVideo(Video video, MemberAccount member){
try {
utility.connect();
ResultSet rs = utility.stmt.executeQuery("SELECT * FROM movies WHERE id = "+ Integer.toString(video.getProductID()));
while(rs.next()) {
// Retrieve the auto generated key(s).
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
rs.updateInt("noOfCopies", (rs.getInt("noOfCopies")+ 1));
rs.updateRow();
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
video.setNoOfCopies(rs.getInt("noOfCopies"));
}
ResultSet results = utility.stmt.executeQuery("SELECT * FROM members WHERE id = "+ Integer.toString(member.getMemberID()));
while(results.next()){
System.out.println(results.getString("pastItems"));
results.updateString("pastItems", results.getString("pastItems")+ ", "+ video.getTitle());
results.updateRow();
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void returnGame(Game game, MemberAccount member){
String currentItems[] = new String[50];
String currentItemsString = null;
try {
utility.connect();
ResultSet rs = utility.stmt.executeQuery("SELECT * FROM games WHERE id = "+ Integer.toString(game.getProductID()));
while(rs.next()) {
// Retrieve the auto generated key(s).
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
rs.updateInt("noOfCopies", (rs.getInt("noOfCopies")- 1));
rs.updateRow();
System.out.println("#of copies = "+ Integer.toString(rs.getInt("noOfCopies")));
game.setNoOfCopies(rs.getInt("noOfCopies"));
game.setDateReturned(new java.util.Date());
}
ResultSet results = utility.stmt.executeQuery("SELECT * FROM members WHERE id = "+ Integer.toString(member.getMemberID()));
while(results.next()){
System.out.println(results.getString("pastItems"));
results.updateString("pastItems", results.getString("pastItems")+ ", "+ game.getTitle());
results.updateRow();
System.out.println(results.getString("currentItems"));
currentItems = results.getString("currentItems").split(", ");
for(int i=0; i<currentItems.length;i++){
if(currentItems[i].equals(game.getTitle())){
currentItems[i] = "";
for(int j=i;j<currentItems.length;j++){
currentItems[j] = currentItems[i+1];
}
}
}
for(int i= 0; i<currentItems.length;i++){
currentItemsString +=currentItems[i];
}
results.updateString("currentItems", currentItemsString);
results.updateRow();
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void addVideo(String title, int noOfCopies, int rentPrice, int purchasePrice, String description, String[] actors,
String duration, String category, String rating, String medium, String director){
//add to database
video = new Video(0, title, actors, director, rating, duration, category, medium, noOfCopies, rentPrice, purchasePrice);
String insertString = "";
int productID = 0;
try {
utility.connect();
insertString = "('"+video.getTitle()+"', '"+video.getActors()+"', '"+video.getDirector()+"', '"+video.getRating()
+ "', '"+video.getRunTime()+"', '"+video.getCategory()
+"', '" + video.getMedium()+ "', "+Integer.toString(video.getNoOfCopies())+ ", "
+Integer.toString(video.getRentalPrice())+","+Integer.toString(video.getPurchasePrice())+")";
int rs = utility.stmt.executeUpdate("INSERT INTO movies ('Title', 'Actors', 'Director', 'Rating', 'Runtime',"
+ " 'Category', 'Medium', 'noOfCopies', 'rentalPrice', 'purchasePrice')"
+ " VALUES" + insertString, Statement.RETURN_GENERATED_KEYS);
ResultSet results = utility.stmt.getGeneratedKeys();
if ( results.next() ) {
// Retrieve the auto generated key(s).
productID = results.getInt(1);
}
video.setProductID(productID);
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void addGame(String title, int rentPrice, int purchasePrice, String description, ArrayList<String> console,
String developer, String publisher, String rating, String category){
//add to database
game = new Game(title, rentPrice, purchasePrice, description, rating, console, category, developer, publisher);
String newGameInformation = null;
int productID = 0;
try {
utility.connect();
newGameInformation = "('"+game.getTitle()+"', '"+ game.getRating()+ "', '"+game.getCategory()
+"', '" + game.getDeveloper()+"', '"+ game.getPublisher()+ "', '"+Integer.toString(game.getProductID())
+"', "+Integer.toString(game.getNoOfCopies())+", "+Integer.toString(game.getRentalPrice())+", "
+Integer.toString(game.getPurchasePrice())+")";
int rs = utility.stmt.executeUpdate("INSERT INTO games ('title', 'rating', 'category', 'developer', 'publisher', 'system',"
+ "'noOfCopies','rentalPrice','purchasePrice')"
+ " VALUES" + newGameInformation, Statement.RETURN_GENERATED_KEYS);
ResultSet results = utility.stmt.getGeneratedKeys();
if (results.next()) {
// Retrieve the auto generated key(s).
productID = results.getInt(1);
}
game.setProductID(productID);
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void removeVideo(int productID){
//remove from database
try {
utility.connect();
int rs = utility.stmt.executeUpdate("DELETE FROM movies WHERE id = " + Integer.toString(productID));
if (rs == 1 ) {
// Retrieve the auto generated key(s).
System.out.println("Video Deleted!");
}else{
System.out.println("ERROR with video removal from database");
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
public void removeGame(int productID){
try {
utility.connect();
int rs = utility.stmt.executeUpdate("DELETE FROM games WHERE id = " + productID);
if (rs == 1 ) {
// Retrieve the auto generated key(s).
System.out.println("Game Deleted!");
}else{
System.out.println("ERROR with game removal from database");
}
utility.con.close();
} //end try
catch(ClassNotFoundException e) {
e.printStackTrace();
}
catch(SQLException e) {
e.printStackTrace();
}
}
}