Soy un manco puse edad por eso en la asignación de valores
This commit is contained in:
parent
a9e1d7ea85
commit
2ac62a6c5d
|
@ -75,11 +75,11 @@ public class DaoPaciente implements IDaoPaciente{
|
||||||
int id = rs.getInt("idPac");
|
int id = rs.getInt("idPac");
|
||||||
String nombre = rs.getString("nombre");
|
String nombre = rs.getString("nombre");
|
||||||
int edad = rs.getInt("edad");
|
int edad = rs.getInt("edad");
|
||||||
double peso = rs.getDouble("peso");
|
float peso = rs.getFloat("peso");
|
||||||
String contacto = rs.getString("contacto");
|
String contacto = rs.getString("contacto");
|
||||||
int idUsuario = rs.getInt("fk_idUsuario");
|
int idUsuario = rs.getInt("fk_idUsuario");
|
||||||
|
|
||||||
pacientes.add(new Paciente(id, nombre, edad, edad, contacto, idUsuario));
|
pacientes.add(new Paciente(id, nombre, edad, peso, contacto, idUsuario));
|
||||||
}
|
}
|
||||||
connection.close();
|
connection.close();
|
||||||
return pacientes;
|
return pacientes;
|
||||||
|
@ -99,11 +99,11 @@ public class DaoPaciente implements IDaoPaciente{
|
||||||
int id = rs.getInt("idPac");
|
int id = rs.getInt("idPac");
|
||||||
String nombre = rs.getString("nombre");
|
String nombre = rs.getString("nombre");
|
||||||
int edad = rs.getInt("edad");
|
int edad = rs.getInt("edad");
|
||||||
double peso = rs.getDouble("peso");
|
float peso = rs.getFloat("peso");
|
||||||
String contacto = rs.getString("contacto");
|
String contacto = rs.getString("contacto");
|
||||||
int idUsuario = rs.getInt("fk_idUsuario");
|
int idUsuario = rs.getInt("fk_idUsuario");
|
||||||
|
|
||||||
pacientes.add(new Paciente(id, nombre, edad, edad, contacto, idUsuario));
|
pacientes.add(new Paciente(id, nombre, edad, peso, contacto, idUsuario));
|
||||||
}
|
}
|
||||||
connection.close();
|
connection.close();
|
||||||
return pacientes;
|
return pacientes;
|
||||||
|
|
Loading…
Reference in New Issue