public static ArrayList<Usuario> llenarUsuarios(ConjuntoResultado rs) throws Exception { ArrayList<Usuario> lst = new ArrayList<Usuario>(); Usuario usuario = null; try { while (rs.next()) { usuario = new Usuario( rs.getLong("pcodigo"), rs.getInt("pestado"), rs.getString("pnick"), rs.getString("pclave"), rs.getString("pnombres"), rs.getString("papellidos"), rs.getString("pmail"), rs.getLong("pprimer_acceso"), rs.getLong("putimo_acceso"), rs.getString("pultima_ip"), rs.getLong("pfecha_modificacion"), rs.getString("pcodigo_salt"), rs.getBoolean("pimagen")); lst.add(usuario); } } catch (Exception e) { lst.clear(); throw e; } return lst; }
public static ArrayList<Abastecimiento> llenarDatos(ConjuntoResultado rs) throws Exception { ArrayList<Abastecimiento> lst = new ArrayList<Abastecimiento>(); Abastecimiento abastecimiento = null; try { while (rs.next()) { abastecimiento = new Abastecimiento( rs.getInt("pid_abastecimiento"), FMedicamento.obtenerMedicamentoDadoCodigo(rs.getInt("pid_medicamento")), FUsuario.ObtenerUsuarioDadoCodigo(rs.getInt("pid_usuario")), rs.getDate("pfecha_abastecimiento"), rs.getInt("pcantidad_global"), rs.getString("punidad_cantidad_global"), rs.getInt("pvalores_unitarios"), rs.getString("punidades")); lst.add(abastecimiento); } } catch (Exception e) { lst.clear(); throw e; } return lst; }