Package Logica

Examples of Logica.TimesInscritosSerieA


        // para procurar os jogos por rodada
        ResultSet rs= stmt.executeQuery(); //executa o que foi passado acima
        List<TimesInscritosSerieA> minhaListaTimes = new ArrayList<TimesInscritosSerieA>();
        //Enquanto existe próximo
        while(rs.next()){
            TimesInscritosSerieA t1 = new TimesInscritosSerieA();
            t1.setId_time(rs.getInt("ID_TIME"));
            t1.setApelido(rs.getString("APELIDO_TIME"));
            t1.setNome(rs.getString("NOME_TIME"));
            t1.setAcesso(rs.getString("ACESSO_TIME"));
            t1.setEstado(rs.getString("ESTADO_TIME"));
            //adicionando valores a minha lista
            minhaListaTimes.add(t1);
        }
        rs.close();
        stmt.close();
View Full Code Here

TOP

Related Classes of Logica.TimesInscritosSerieA

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.