public List<Curso> buscar(Curso filtro) { try { String sql = "select * from cursos "; String where = ""; if (filtro.getNome().length() > 0) { where = "nome like '%" + filtro.getNome() + "%'"; } if (filtro.getIdCurso() > 0) { if (where.length() > 0) { where = where + " and "; } where = where + " idcurso = " + filtro.getIdCurso(); } if (where.length() > 0) { sql = sql + " where " + where; } Statement comando = bd.getConexao().createStatement(); ResultSet resultado = comando.executeQuery(sql); List<Curso> curso = new LinkedList<>(); while (resultado.next()) { Curso temp = new Curso(0, ""); temp.setIdCurso(resultado.getInt("idcurso")); temp.setNome(resultado.getString("nome")); curso.add(temp); } return curso; } catch (SQLException ex) { Logger.getLogger(CursoDAO.class.getName()).log(Level.SEVERE, null, ex); return null; } }
public boolean Apagar(Curso obj) { try { PreparedStatement comando = bd.getConexao().prepareStatement("delete from cursos where idcurso = ?"); comando.setInt(1, obj.getIdCurso()); comando.executeUpdate(); return true; } catch (SQLException ex) { Logger.getLogger(CursoDAO.class.getName()).log(Level.SEVERE, null, ex); return false; } }
public boolean Salvar(Curso obj) { try { if (obj.getIdCurso() == 0) { PreparedStatement comando = bd.getConexao().prepareStatement("insert into cursos(nome) values(?)"); comando.setString(1, obj.getNome()); comando.executeUpdate(); } else { PreparedStatement comando = bd.getConexao().prepareStatement("update cursos set nome = ? where idcurso = ?"); comando.setString(1, obj.getNome()); comando.setInt(2, obj.getIdCurso()); comando.executeUpdate(); } return true; } catch (SQLException ex) { Logger.getLogger(CursoDAO.class.getName()).log(Level.SEVERE, null, ex); return false; } }