public List<AlunoTarefa> buscar(AlunoTarefa filtro) { try { String sql = "select * from alunosportarefa "; String where = ""; if (filtro.getIdtarefa() > 0) { where = "idtarefa =" + filtro.getIdtarefa() + "%'"; } if (filtro.getIdaluno() > 0) { where = "idaluno =" + filtro.getIdaluno() + "%'"; } if (filtro.getIdalunotarefa() > 0) { if (where.length() > 0) { where = where + " and "; } where = where + " idalunotarefa = " + filtro.getIdalunotarefa(); } if (where.length() > 0) { sql = sql + " where " + where; } Statement comando = bd.getConexao().createStatement(); ResultSet resultado = comando.executeQuery(sql); List<AlunoTarefa> alunotarefa = new LinkedList<>(); while (resultado.next()) { AlunoTarefa temp = new AlunoTarefa(); temp.setIdalunotarefa(resultado.getInt("idalunotarefa")); temp.setIdaluno(resultado.getInt("idaluno")); temp.setIdtarefa(resultado.getInt("idtarefa")); alunotarefa.add(temp); } return alunotarefa; } catch (SQLException ex) { Logger.getLogger(AlunoTarefaDAO.class.getName()).log(Level.SEVERE, null, ex); return null; } }
public List<AlunoTarefa> listarTodos() { try { PreparedStatement comando = bd.getConexao().prepareStatement("select * from alunosportarefa"); ResultSet resultado = comando.executeQuery(); List<AlunoTarefa> alunotarefa = new LinkedList<>(); while (resultado.next()) { AlunoTarefa tmp = new AlunoTarefa(); tmp.setIdalunotarefa(resultado.getInt("idalunotarefa")); tmp.setIdaluno(resultado.getInt("idaluno")); tmp.setIdtarefa(resultado.getInt("idtarefa")); alunotarefa.add(tmp); } return alunotarefa; } catch (SQLException ex) { Logger.getLogger(AlunoTarefaDAO.class.getName()).log(Level.SEVERE, null, ex); return null; } }
public AlunoTarefa Abrir(int codigo) { try { AlunoTarefa alunotarefa = new AlunoTarefa(); PreparedStatement comando = bd.getConexao().prepareStatement("select * from alunosportarefa where idalunotarefa = ?"); comando.setInt(1, codigo); ResultSet resultado = comando.executeQuery(); resultado.first(); alunotarefa.setIdalunotarefa(resultado.getInt("idalunotarefa")); alunotarefa.setIdaluno(resultado.getInt("idaluno")); alunotarefa.setIdtarefa(resultado.getInt("idtarefa")); return alunotarefa; } catch (SQLException ex) { Logger.getLogger(AlunoTarefaDAO.class.getName()).log(Level.SEVERE, null, ex); return null; } }