Examples of DepartamentoRelatorio


Examples of br.com.sistelecom.entidade.relatorio.DepartamentoRelatorio

      ps = conn.prepareStatement("select * from departamento");
      rs = ps.executeQuery();
      List<DepartamentoRelatorio> listaRelatorio = new ArrayList<DepartamentoRelatorio>();
      while(rs.next()) {
       
        listaRelatorio.add(new DepartamentoRelatorio(rs.getInt(1), rs.getString(2), rs.getString(3)));
      }
      return listaRelatorio;
     
    } catch (Exception e) {
      e.printStackTrace();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.