-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclinica.java
457 lines (370 loc) · 11.5 KB
/
clinica.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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
import java.io.InputStreamReader;
import java.io.BufferedReader;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.CallableStatement;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Clinica {
private Connection conn = null;
private void showMenu() {
int option = -1;
do {
System.out.println("Bienvenido a CLINICA\n");
System.out.println("Selecciona una opción:\n");
System.out.println("\t1. Obtener la lista completa de doctores que hay en la base de datos.");
System.out.println("\t2. Obtener la lista de pacientes disponibles.");
System.out.println("\t3. Obtener la lista de enfermedades que hay en la base de datos.");
System.out.println("\t4. Obtener la lista de fármacos disponibles.");
System.out.println("\t5. Obtener los pacientes de un doctor dado.");
System.out.println("\t6. Obtener el diagnóstico de un paciente determinado.");
System.out.println("\t7. Obtener cuantas veces una enfermedad ha sido diagnosticada (y la distribución de pacientes que han sufrido dicha enfermedad y cuantas veces).");
System.out.println("\t8. Obtener la lista de enfermedades que pueden ser tratadas con un fármaco concreto.");
System.out.println("\t9. Añadir un nuevo paciente y asociarle una o varias enfermedades.");
System.out.println("\t10. Salir.");
try {
option = readInt();
switch (option) {
case 1:
obtenerDoctores();
break;
case 2:
obtenerPacientes();
break;
case 3:
obtenerEnfermedades();
break;
case 4:
obtenerFarmacos();
break;
case 5:
obtenerPacientesDeUnDoctor();
break;
case 6:
obtenerDiagnosticoDeUnPaciente();
break;
case 7:
obtenerDistribucionDiagnosticoEnfermedad();
break;
case 8:
obtenerEnfermedadesTratadasConFarmaco();
break;
case 9:
anadirPacienteYDiagnosticos();
break;
}
} catch (Exception e) {
System.err.println("Opción introducida no válida!");
}
}
while (option != 10);
exit();
}
private void exit(){
try{
if (conn != null){
conn.close();
}
System.out.println("Desonectado de la base de datos");
}
catch (Exception e){
System.err.println("Error al desconectar de la BD: " + e.getMessage());
}
System.out.println("Saliendo.. ¡hasta otra!");
System.exit(0);
}
private void conectar() {
try{
String drv = "com.mysql.jdbc.Driver";
Class.forName(drv);
String serverAddress = "localhost:3306";
String db = "clinica";
String user = "clinica";
String pass = "clicli_pwd";
String url = "jdbc:mysql://" + serverAddress + "/" + db;
conn = DriverManager.getConnection(url, user, pass);
System.out.println("Conectado a la base de datos!");
}
catch (Exception e){
System.err.println("Error al conectar a la BD: " + e.getMessage());
}
}
private void anadirPacienteYDiagnosticos() {
//implementar
}
private void obtenerEnfermedadesTratadasConFarmaco() {
int option = -1;
do {
farmacoAux();
System.out.println("\tPor favor, seleccione el ID del farmaco a consultar \n\tPulse 0 para salir del menú de opciones");
try {
Statement st = conn.createStatement();
option = readInt();
switch (option) {
default:
ResultSet rs = st.executeQuery("SELECT EN.nombre FROM enfermedad EN, trata TR, medicamento M"
+ " WHERE EN.id = TR.id_enfermedad AND M.id = TR.id_medicamento AND M.id ="+option);
System.out.println("\n\tEl medicamento elegido trata las siguientes enfermedades:\n");
while (rs.next()) {
String nombreEnf = rs.getString("EN.nombre");
System.out.println("\t " + nombreEnf);
}
System.out.println("\n");
st.close();
break;
}
} catch (Exception e) {
System.err.println("Opción introducida no válida!");
}
}
while (option != 0);
}
private void farmacoAux(){
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT id, nombre FROM medicamento");
System.out.println("\n\tMedicamentos: \n");
while (rs.next()) {
int id = rs.getInt("id");
String nombre = rs.getString("nombre");
System.out.println("\tID: " + id + "\tFármaco: " + nombre);
}
System.out.println("\n");
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerDistribucionDiagnosticoEnfermedad() {
int option = -1;
do {
enfermedadesAux();
System.out.println("\tPor favor, seleccione el ID de la enfermedad a consultar \n\tPulse 0 para salir del menú de opciones");
try {
Statement st = conn.createStatement();
option = readInt();
switch (option) {
default:
ResultSet rs = st.executeQuery("SELECT PA.nombre FROM enfermedad EN, paciente PA, diagnostica DI "
+ "WHERE PA.id = DI.id_paciente AND EN.id = DI.id_enfermedad AND EN.id ="+option);
System.out.println("\n\tDistribución de la enfermedad:\n");
int i = 0;
while (rs.next()) {
i++;
String nombrePaciente = rs.getString("PA.nombre");
System.out.println("\t " + nombrePaciente);
}
System.out.println("\n\tLa enfermedad ha sido diagnosticada " + i + " veces");
System.out.println("\n");
st.close();
break;
}
} catch (Exception e) {
System.err.println("Opción introducida no válida!");
}
}
while (option != 0);
}
private void enfermedadesAux(){
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT id, nombre FROM enfermedad");
System.out.println("\n\tEnfermedades: \n");
while (rs.next()) {
int id = rs.getInt("id");
String nombre = rs.getString("nombre");
System.out.println("\tID: " + id + "\tEnfermedad: " + nombre);
}
System.out.println("\n");
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerDiagnosticoDeUnPaciente() {
int option = -1;
do {
obtenerPacienteApoyo();
System.out.println("\n\t0. Salir del menú");
try {
option = readInt();
switch (option) {
default:
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT EN.nombre, DI.fecha FROM paciente PA, enfermedad EN, diagnostica DI"
+ " WHERE EN.id = DI.id_enfermedad AND PA.id = DI.id_paciente AND PA.id="+option);
while (rs.next()) {
String nombre = rs.getString("EN.nombre");
String fecha = rs.getString("DI.fecha");
System.out.println("\tDiagnostico: " + nombre + "\t\t\t" + "Fecha del diagnóstico: " + fecha);
}
System.out.println("\n");
st.close();
break;
}
} catch (Exception e) {
System.err.println("Opción introducida no válida!");
}
}
while (option != 0);
}
private void obtenerPacienteApoyo(){
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT id, nombre FROM paciente");
System.out.println("\n\tPacientes:\n");
while (rs.next()) {
int id = rs.getInt("id");
String firstName = rs.getString("nombre");
System.out.println("\tID: " + id + "\tNombre: " + firstName);
}
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerPacientesDeUnDoctor() {
int option = -1;
do {
obtenerDoctores();
System.out.println("\tPor favor, seleccione el ID del doctor a consultar \n\tPulse 0 para salir del menú de opciones");
try {
Statement st = conn.createStatement();
option = readInt();
switch (option) {
default:
ResultSet rs = st.executeQuery("SELECT nombre FROM paciente WHERE id_doctor ="+option);
while (rs.next()) {
String nombre = rs.getString("nombre");
System.out.println("\tPaciente: " + nombre);
}
System.out.println("\n");
st.close();
break;
}
} catch (Exception e) {
System.err.println("Opción introducida no válida!");
}
}
while (option != 0);
}
private void obtenerFarmacos() {
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT M.id, M.nombre, IA.nombre, EX.nombre FROM medicamento M, principio_activo IA, tiene_excipiente TE, excipiente EX"
+ " WHERE IA.id = M.id_principio_activo AND TE.id_excipiente = EX.id AND TE.id_medicamento = M.id");
System.out.println("\n\tMedicamentos: \n");
while (rs.next()) {
int id = rs.getInt("M.id");
String nombreMedicamento = rs.getString("M.nombre");
String ingActivo = rs.getString("IA.nombre");
String nombreExcipiente = rs.getString("EX.nombre");
System.out.println("\n\tID: " + id + "\n\tFármaco: " + nombreMedicamento + "\n\tIngrediente activo: " + ingActivo + "\n\tExcipiente: " + nombreExcipiente);
}
System.out.println("\n");
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerEnfermedades() {
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT EN.id, EN.nombre, SIN.nombre FROM enfermedad EN , sintomas SIN WHERE EN.id = SIN.id");
System.out.println("\n\tEnfermedades: \n");
while (rs.next()) {
int id = rs.getInt("EN.id");
String nombre = rs.getString("EN.nombre");
String sintomas = rs.getString("SIN.nombre");
System.out.println("\tID: " + id + "\n\tEnfermedad: " + nombre + "\n\tSintomas: " + sintomas + "\n");
}
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerPacientes() {
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT PA.id, PA.nombre, D.nombre FROM paciente PA, doctor D WHERE D.id = PA.id_doctor");
System.out.println("\n\tPacientes:\n");
while (rs.next()) {
int id = rs.getInt("PA.id");
String firstName = rs.getString("PA.nombre");
String nomDoctor = rs.getString("D.nombre");
System.out.println("\tID: " + id + "\n\tNombre: " + firstName + "\n\tNombre Doctor: " + nomDoctor + "\n");
}
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private void obtenerDoctores() {
if(conn==null){
conectar();
}
try{
Statement st = conn.createStatement();
ResultSet rs = st.executeQuery("SELECT * FROM doctor");
System.out.println("\n\tDoctores\n");
while (rs.next()) {
int id = rs.getInt("id");
String nombre = rs.getString("nombre");
System.out.println("\tID: " + id + "\t Nombre: " + nombre);
}
System.out.println("\n");
st.close();
}
catch(Exception e){
System.err.println("Error al seleccionar a la BD: " + e.getMessage());
}
}
private int readInt()throws Exception {
try {
System.out.print("> ");
return Integer.parseInt(new BufferedReader(new InputStreamReader(
System.in)).readLine());
} catch (Exception e) {
throw new Exception("Not number");
}
}
private String readString()throws Exception {
try {
System.out.print("> ");
return new BufferedReader(new InputStreamReader(
System.in)).readLine();
} catch (Exception e) {
throw new Exception("Error reading line");
}
}
public static void main(String args[]) {
new Clinica().showMenu();
}
}