-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeitorDAO.java
257 lines (179 loc) · 6.8 KB
/
LeitorDAO.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
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
package dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import bean.Leitor;
import util.ConnectionFactory;
public class LeitorDAO {
private Connection conn;
private PreparedStatement ps;
private ResultSet rs;
private Leitor leitor;
public LeitorDAO() throws Exception {
try {
conn = ConnectionFactory.getConnection();
}
catch(Exception e)
{
throw new Exception ("Erro: " + e.getMessage());
}
}
public void salvar1(Leitor leitor) throws Exception {
try {
String sql = "INSERT INTO dadosPessoais (RGM, nomeAluno, nascAluno,"
+ " CPF, emailAluno, endAluno, munAluno,"
+ " ufAluno, celAluno)"
+ " values(?, ?, ?, ?, ?, ?, ?, ?, ?)" ;
ps = conn.prepareStatement(sql);
ps.setInt (1, leitor.getRGM());
ps.setString (2, leitor.getNomeAluno());
ps.setString (3,leitor.getNascAluno());
ps.setInt (4, leitor.getCPF());
ps.setString (5, leitor.getEmailAluno());
ps.setString (6, leitor.getEndAluno());
ps.setString (7, leitor.getMunAluno());
ps.setNString (8, leitor.getUfAluno());
ps.setInt (9,leitor.getCelAluno());
ps.setString (10, leitor.instrumento());
ps.setString (11, leitor.getprofessor());
ps.setNString (12, leitor.getPerAluno());
ps.setNString (13, leitor.getDiscAluno());
ps.setNString (14, leitor.getSemAluno());
ps.setNString (15,leitor.getNotaAluno());
ps.setInt (16, leitor.getFalAluno());
ps.executeUpdate();
}
catch(Exception e) {
throw new Exception ("Erro: " + e.getMessage());
}
}
public void salvar2(Leitor leitor) throws Exception {
try {
String sql = "INSERT INTO curso (instrumento ,professor,perAluno, discAluno,semAluno,notaAluno,falAluno)"
+ " values(?, ?, ?, ?, ?, ?, ?)" ;
ps = conn.prepareStatement(sql);
ps.setInt (1, leitor.getRGM());
ps.setString (2, leitor.getNomeAluno());
ps.setString (3,leitor.getNascAluno());
ps.setInt (4, leitor.getCPF());
ps.setString (5, leitor.getEmailAluno());
ps.setString (6, leitor.getEndAluno());
ps.setString (7, leitor.getMunAluno());
ps.setNString (8, leitor.getUfAluno());
ps.setInt (9,leitor.getCelAluno());
ps.setString (10, leitor.instrumento());
ps.setString (11, leitor.getprofessor());
ps.setNString (12, leitor.getPerAluno());
ps.setNString (13, leitor.getDiscAluno());
ps.setNString (14, leitor.getSemAluno());
ps.setNString (15,leitor.getNotaAluno());
ps.setInt (16, leitor.getFalAluno());
ps.executeUpdate();
}
catch(Exception e) {
throw new Exception ("Erro: " + e.getMessage());
}
}
public void excluir(int RGM) throws Exception {
try {
String sql = "DELETE FROM cursoCompleto " + "WHERE RGM=?";
ps = conn.prepareStatement(sql);
ps.setInt(1, RGM);
ps.executeUpdate();
} catch (Exception erro) {
throw new Exception("Erro " + erro.getMessage());
}
}
public void alterar(Leitor leitor) throws Exception {
try {
String sql = "UPDATE cursoCompleto SET RGM=?,nomeAluno =?, nascAluno=?,"
+ " CPF=?, emailAluno=?, endAluno=?, munAluno=?,"
+ " ufAluno=?, celAluno=?, instrumento=?, professor=?,"
+ " perAluno=?, discAluno=?,semAluno=?, notaAluno=?, falAluno=? WHERE RGM=?";
ps = conn.prepareStatement(sql);
ps.setInt (1, leitor.getRGM());
ps.setString (2, leitor.getNomeAluno());
ps.setString (3,leitor.getNascAluno());
ps.setInt (4, leitor.getCPF());
ps.setString (5, leitor.getEmailAluno());
ps.setString (6, leitor.getEndAluno());
ps.setString (7, leitor.getMunAluno());
ps.setNString (8, leitor.getUfAluno());
ps.setInt (9,leitor.getCelAluno());
ps.setString (10, leitor.instrumento());
ps.setString (11, leitor.getprofessor());
ps.setNString (12, leitor.getPerAluno());
ps.setNString (13, leitor.getDiscAluno());
ps.setNString (14, leitor.getSemAluno());
ps.setNString (15,leitor.getNotaAluno());
ps.setInt (16, leitor.getFalAluno());
ps.setInt (17, leitor.getRGM());
ps.executeUpdate();
} catch (Exception erro) {
throw new Exception("Erro " + erro.getMessage());
}
}
public Leitor consultar(int RGM) throws Exception {
try {
leitor = new Leitor();
String sql = "SELECT * FROM cursoCompleto WHERE RGM=? ";
ps = conn.prepareStatement(sql);
ps.setInt(1, RGM);
rs = ps.executeQuery();
while (rs.next()) {
leitor.setRGM (rs.getInt(1));
leitor.setNomeAluno (rs.getString(2));
leitor.setNascAluno (rs.getString(3));
leitor.setCPF (rs.getInt(4));
leitor.setEmailAluno (rs.getString(5));
leitor.setEndAluno (rs.getString(6));
leitor.setMunAluno (rs.getString(7));
leitor.setUfAluno (rs.getString(8));
leitor.setCelAluno (rs.getInt(9));
leitor.setinstrumento (rs.getString(10));
leitor.setprofessor (rs.getString(11));
leitor.setPerAluno (rs.getString(12));
leitor.setDiscAluno (rs.getString(13));
leitor.setSemAluno (rs.getString(14));
leitor.setNotaAluno (rs.getString(15));
leitor.setFalAluno (rs.getInt(16));
}
return leitor;
} catch (Exception e) {
throw new Exception("Erro: " + e.getMessage());
}
}
public Leitor consulta1(int RGM) throws Exception {
// botao consultar aulas e professores;
try {
leitor = new Leitor();
String sql = "SELECT * FROM cursoCompleto WHERE RGM=? ";
ps = conn.prepareStatement(sql);
ps.setInt(1, RGM);
rs = ps.executeQuery();
while (rs.next()) {
leitor.setRGM (rs.getInt(1));
leitor.setNomeAluno (rs.getString(2));
leitor.setNascAluno (rs.getString(3));
leitor.setCPF (rs.getInt(4));
leitor.setEmailAluno (rs.getString(5));
leitor.setEndAluno (rs.getString(6));
leitor.setMunAluno (rs.getString(7));
leitor.setUfAluno (rs.getString(8));
leitor.setCelAluno (rs.getInt(9));
leitor.setinstrumento (rs.getString(10));
leitor.setprofessor (rs.getString(11));
leitor.setPerAluno (rs.getString(12));
leitor.setDiscAluno (rs.getString(13));
leitor.setSemAluno (rs.getString(14));
leitor.setNotaAluno (rs.getString(15));
leitor.setFalAluno (rs.getInt(16));
}
return leitor;
} catch (Exception e) {
throw new Exception("Erro: " + e.getMessage());
}
}
}