Package dao

Examples of dao.JogosDao


            jTCvVisitante.setText("");
        }
    }

    public void listarRodada() throws SQLException{
        JogosDao dao = new JogosDao();
        jogos = dao.getLista(Integer.parseInt(cmbRodada.getSelectedItem().toString()));
        mostraPesquisa(jogos);
    }
View Full Code Here


        //se for diferente de -1 irá fazer alguma coisa
        if(jTTabelaJogos.getSelectedRow() != -1){
            //verifica se tem campos nulos, retorno true para não nulos
            if(verificaDados()){
                Jogos j1 = new Jogos();
                JogosDao dao = new JogosDao();
                j1.setId_jogo(Integer.valueOf(jTIdJogo.getText()));
                j1.setRodada(Integer.parseInt(jTRodada.getText()));
                j1.setTime_mandante((jTTimeMandante.getText()));
                j1.setTime_mandante((jTTimeVisitante.getText()));
                j1.setPlacar_mandante(Integer.parseInt(jTPlacarMandante.getText()));
                j1.setPlacar_visitante(Integer.parseInt(jTPlacarVisitante.getText()));
                j1.setCa_mandante(Integer.parseInt(jTCaMandante.getText()));
                j1.setCa_visitante(Integer.parseInt(jTCaVisitante.getText()));
                j1.setCv_mandante(Integer.parseInt(jTCvMandante.getText()));
                j1.setCv_visitante(Integer.parseInt(jTCvVisitante.getText()));
                dao.atualizaInformacoesDosJogos(j1);
                JOptionPane.showMessageDialog(null, "Jogo Atualizado com sucesso!");
            }
        }
    }
View Full Code Here

    public void excluirJogo() throws SQLException {
        int resp = JOptionPane.showConfirmDialog(this, "Deseja realmente excluir este jogo?",
                "Confirmação", JOptionPane.YES_NO_OPTION);
        // se resposta for sim, o jogo será deletado
        if (resp == JOptionPane.YES_NO_OPTION) {
            JogosDao dao = new JogosDao();
            dao.remove(jogos.get(jTTabelaJogos.getSelectedRow()));
            mostraPesquisa(jogos);
        }
    }
View Full Code Here

            mostraPesquisa(jogos);
        }
    }

    public void listarRodada() throws SQLException {
        JogosDao dao = new JogosDao();
        jogos = dao.getLista(Integer.parseInt(cmbRodada.getSelectedItem().toString()));
        mostraPesquisa(jogos);
    }
View Full Code Here

            j1.setEstadio(cmbEstadio.getSelectedItem().toString());
            j1.setCidade((jTCidade.getText()));
            j1.setData((jTData.getText()));
            j1.setHora((jTHora.getText()));
            j1.setValor_ingresso(Integer.parseInt(jTIngresso.getText()));
            JogosDao dao = new JogosDao();
            dao.adicionaInformacoesDosJogos(j1);
        } catch (SQLException ex) {
            JOptionPane.showMessageDialog(null, "Problemas no Cadastro do Jogo" + ex);
        }
    }
View Full Code Here

        //se for diferente de -1 irá fazer alguma coisa
        if (jTTabelaJogos.getSelectedRow() != -1) {
            //verifica se tem campos nulos, retorno true para não nulos
            if (verificaDados()) {
                Jogos j1 = new Jogos();
                JogosDao dao = new JogosDao();
                j1.setId_jogo(Integer.parseInt(jTIdJogo.getText()));
                j1.setRodada(Integer.parseInt(jTRodada.getText()));
                j1.setTime_mandante(cmbTimeMandante.getSelectedItem().toString());
                j1.setTime_visitante(cmbTimeVisitante.getSelectedItem().toString());
                j1.setCidade((jTCidade.getText()));
                j1.setData((jTData.getText()));
                j1.setHora((jTHora.getText()));
                j1.setValor_ingresso(Integer.parseInt(jTIngresso.getText()));
                dao.atualizaInformacoesDosJogosMarcados(j1);
                JOptionPane.showMessageDialog(null, "Jogo Alterado com sucesso!");
            }
        }
    }
View Full Code Here

TOP

Related Classes of dao.JogosDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.