-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJobDAO.java
More file actions
186 lines (164 loc) · 5.12 KB
/
JobDAO.java
File metadata and controls
186 lines (164 loc) · 5.12 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
package careerpath;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
public class JobDAO {
public List<Job> getJobs() throws Exception {
String sql = "SELECT * FROM jobs;";
Connection con = null;
DB db = new DB();
List<Job> jobs = new ArrayList<Job>();
try {
con = db.getConnection();
PreparedStatement stmt = con.prepareStatement( sql );
ResultSet rs = stmt.executeQuery();
while (rs.next()) {
jobs.add( new Job(rs.getString("name"), rs.getString("domain"),
rs.getString("desc"),rs.getInt("id"),
rs.getInt("interested"), rs.getString("cuname")));
}
rs.close();
stmt.close();
db.close();
return jobs;
} catch(Exception e) {
throw new Exception("Could not establish connection with the Database Server: "
+ e.getMessage());
} finally {
try {
db.close();
} catch (Exception e) {
}
}
} //End of getJobs
/**
* Search Job by id
*
* @param id, int
* @return Job, the Job object or null
* @throws Exception
*/
public Job findJob(int id) throws Exception {
String sql = "SELECT * FROM jobs WHERE id=?;";
Connection con = null;
DB db = new DB();
try {
con = db.getConnection();
PreparedStatement stmt = con.prepareStatement( sql );
stmt.setInt(1, id);
ResultSet rs = stmt.executeQuery();
if (!rs.next()) {
rs.close();
stmt.close();
db.close();
throw new Exception("No Job found with id: " + id);
}
Job job = new Job(rs.getString("name"), rs.getString("domain"),
rs.getString("desc"),rs.getInt("id"),
rs.getInt("interested"), rs.getString("cuname"));
rs.close();
stmt.close();
db.close();
return job;
} catch(Exception e){
throw new Exception("Could not establish connection with the Database Server: "
+ e.getMessage());
} finally {
try {
db.close();
} catch (Exception e) {
}
}
} //End of findJob
/**
* Register/create new Job.
*
* @param Job, Job
* @throws Exception, if encounter any error.
*/
public void register(Job job) throws Exception {
DB db = new DB();
String sql = "INSERT INTO jobs " + " (name, domain, desc, id, interested, cuname) VALUES (?, ?, ?, ?, ?, ?);";
Connection con = null;
try{
con = db.getConnection();
PreparedStatement stmt = con.prepareStatement(sql);
stmt.setString(1, job.getName());
stmt.setString(2, job.getDomain());
stmt.setString(3, job.getDesc());
stmt.setInt(4, job.getId());
stmt.setInt(5, job.getInterested());
stmt.setString(6, job.getCuname());
stmt.executeUpdate();
stmt.close();
db.close();
} catch (Exception e) {
throw new Exception("Could not establish connection with the Database Server: "
+ e.getMessage());
} finally {
try {
db.close();
} catch (Exception e) {
}
}
// thema 1 D
}//end of register
public List<Job> searchJobs(String domain) throws Exception {
String sql = "SELECT * FROM jobs WHERE domain=?;";
Connection con = null;
DB db = new DB();
List<Job> jobs = new ArrayList<Job>();
try {
con = db.getConnection();
PreparedStatement stmt = con.prepareStatement( sql );
stmt.setString(1, domain);
ResultSet rs = stmt.executeQuery();
while (rs.next()) {
jobs.add( new Job(rs.getString("name"), rs.getString("domain"),
rs.getString("desc"),rs.getInt("id"),
rs.getInt("interested"), rs.getString("cuname")));
}
rs.close();
stmt.close();
db.close();
return jobs;
} catch(Exception e) {
throw new Exception("Could not establish connection with the Database Server: "
+ e.getMessage());
} finally {
try {
db.close();
} catch (Exception e) {
}
}
} //End of searchJobs
public List<Job> myJobs(String cuname) throws Exception {
String sql = "SELECT * FROM jobs WHERE cuname=?;";
Connection con = null;
DB db = new DB();
List<Job> jobs = new ArrayList<Job>();
try {
con = db.getConnection();
PreparedStatement stmt = con.prepareStatement( sql );
stmt.setString(1, cuname);
ResultSet rs = stmt.executeQuery();
while (rs.next()) {
jobs.add( new Job(rs.getString("name"), rs.getString("domain"),
rs.getString("desc"),rs.getInt("id"),
rs.getInt("interested"), rs.getString("cuname")));
}
rs.close();
stmt.close();
db.close();
return jobs;
} catch(Exception e) {
throw new Exception("Could not establish connection with the Database Server: "
+ e.getMessage());
} finally {
try {
db.close();
} catch (Exception e) {
}
}
} //End of myJobs
}