Package br.com.colibri.dao

Examples of br.com.colibri.dao.FilmeDAO.atualizar()


    filme.setId(id);
    filme.setNome("nomeAtualizacao");
    filme.setSinopse("Sinopse alterada");
    filme.setDataLancamento(new Date());
    filme.setUrlTrailer("http://testeurlalterada.com.br");     
    dao.atualizar(filme);   
   
    Connection con = DAOBase.getConnection();
    PreparedStatement statement = con.prepareStatement("select id, nome, dataLancamento , sinopse, urltrailer from TBFILME where id = ?");
    statement.setLong(1, id);
    ResultSet result = statement.executeQuery();
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.