8081828384858687888990
ResultSet rs = pstmt.executeQuery();//Devolve os resultado de todos os empregados do bd while (rs.next()) { f.add(new Usuario( // adciona ao arraylist o(s) novo cliente(s) rs.getString(1), rs.getInt(2)));
144145146147148149150151152153154
ResultSet rs = pstmt.executeQuery(); while (rs.next()) { usuarios.add( new Usuario(rs.getInt("id"), rs.getString("usuario"), rs.getString("senha"))); } rs.close();
8485868788899091929394
ResultSet rs = pstmt.executeQuery();//Devolve os resultado de todos os empregados do bd while (rs.next()) { f.add(new Usuario( rs.getInt(1),// adciona ao arraylist o(s) novo cliente(s) rs.getString(2), rs.getString(3)));