PreparedStatement pstm = this.conn.prepareStatement(sql);
ResultSet rs = pstm.executeQuery();
while (rs.next()) {
// String str = rs.getString("titulo");
Livro l = new Livro(rs.getString("isbn"),
rs.getString("autor"), rs.getString("titulo"),
rs.getString("editora"), rs.getInt("ano"),
rs.getInt("edicao"), rs.getInt("numPaginas"), null);
lstRetorno.add(l);
}