-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonDAO.java
146 lines (111 loc) · 3.59 KB
/
PersonDAO.java
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
package dao;
import java.sql.CallableStatement;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Logger;
import model.Person;
public class PersonDAO extends database implements IDAO {
static final String PROCEDURE_INSERT_PERSON = "{ call stp_insert_person (?, ? ) }";
static final String PROCEDURE_UPDATE_PERSON = "{ call stp_update_person (?, ?, ? ) }";
static final String PROCEDURE_DELETE_PERSON = "{ call stp_delete_person (? ) }";
static final String VIEW_PERSON = "SELECT * FROM view_person";
static private final String COLUMN_ID = "id_person";
static private final String COLUMN_NAME = "name_person";
static private final String COLUMN_DATE = "date_person";
Logger logger = Logger.getLogger(PersonDAO.class.getName());
@Override
public Person insert(Person person) {
if (conect()) {
try {
CallableStatement cstmt = cn.prepareCall(PROCEDURE_INSERT_PERSON);
cstmt.setString(1, person.getName());
cstmt.setDate(2, java.sql.Date.valueOf(new SimpleDateFormat("yyyy-MM-dd").format(person.getDate())));
cstmt.execute();
logger.info("Person inserted.");
} catch (SQLException e) {
logger.warning(String.format("Code: %s | Message: %s", e.getErrorCode(), e.getMessage()));
}
}
return null;
}
@Override
public Person update(int id, Person personUpdated) {
if (conect()) {
try {
CallableStatement cstmt = cn.prepareCall(PROCEDURE_UPDATE_PERSON);
cstmt.setInt(1, id);
cstmt.setString(2, personUpdated.getName());
cstmt.setDate(3,
java.sql.Date.valueOf(new SimpleDateFormat("yyyy-MM-dd").format(personUpdated.getDate())));
cstmt.execute();
logger.info(String.format("Person {%d} updated.", id));
} catch (SQLException e) {
logger.warning(String.format("Code: %s | Message: %s", e.getErrorCode(), e.getMessage()));
}
}
return null;
}
@Override
public Person delete(int id) {
if (conect()) {
try {
CallableStatement cstmt = cn.prepareCall(PROCEDURE_DELETE_PERSON);
cstmt.setInt(1, id);
cstmt.execute();
logger.info(String.format("Person {%d} deleted.", id));
} catch (SQLException e) {
logger.warning(String.format("Code: %s | Message: %s", e.getErrorCode(), e.getMessage()));
}
}
return null;
}
@Override
public List<Person> list(int[] listPerson) {
List<Person> persons = new ArrayList<Person>();
for (int id : listPerson) {
persons.add(findById(id));
}
return persons;
}
@Override
public List<Person> getAll() {
List<Person> persons = new ArrayList<Person>();
if (conect()) {
try {
st = cn.createStatement();
rs = st.executeQuery(VIEW_PERSON);
while (rs.next()) {
persons.add(new Person(rs.getInt(COLUMN_ID), rs.getString(COLUMN_NAME), rs.getDate(COLUMN_DATE)));
}
} catch (SQLException e) {
return null;
}
}
return persons;
}
@Override
public Person findById(int id) {
if (conect()) {
try {
PreparedStatement stmt = cn.prepareStatement(VIEW_PERSON + " WHERE " + COLUMN_ID + " = ?");
stmt.setInt(1, id);
rs = stmt.executeQuery();
if (rs.next()) {
Person person = new Person();
person.setId(rs.getInt(COLUMN_ID));
person.setName(rs.getString(COLUMN_NAME));
person.setDate(rs.getDate(COLUMN_DATE));
return person;
} else {
return null;
}
} catch (SQLException e) {
return null;
}
}
return null;
}
}