return ingredientesFelices;
}
private Ingrediente obtenerIngredientePorID(int idIngrediente) {
conectarABaseDeDatos();
Ingrediente i = null;
try {
consulta = conexion.createStatement();
resultados = consulta.executeQuery("SELECT * FROM ingrediente WHERE id = '" + idIngrediente + "'");
resultados.next();
String nombre = resultados.getString("nombre");
Date caducidad = new Date(resultados.getString("caducidad"));
int vecesUsable = resultados.getInt("veces_usable");
String descripcion = resultados.getString("descripcion");
i = new Ingrediente();
i.setNombre(nombre);
i.setFechaDeCaducidad(caducidad);
i.setVecesQueSePuedeUsar(vecesUsable);
i.setDescripcion(descripcion);
} catch (SQLException ex) {
Logger.getLogger(ServicioDeAccesoABaseDeDatos.class.getName()).log(Level.SEVERE, null, ex);
} finally {
}