Ignore:
Timestamp:
02/08/23 12:10:52 (22 months ago)
Author:
milamihajlovska <mila.mihajlovska01@…>
Branches:
master
Children:
86e187f
Parents:
c05cd97 (diff), eb36f39 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of https://github.com/DenicaKj/MovieZone

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/com/example/moviezone/repository/FilmRepository.java

    rc05cd97 r2a98e34  
    66import org.springframework.data.jpa.repository.query.Procedure;
    77import org.springframework.data.repository.query.Param;
     8import org.springframework.jdbc.core.JdbcTemplate;
    89
     10import javax.swing.tree.RowMapper;
    911import javax.transaction.Transactional;
     12import java.sql.ResultSet;
     13import java.sql.SQLException;
    1014import java.util.List;
    1115@Transactional
     
    1317    @Procedure("project.getFilmsFromCinema")
    1418    List<FilmsReturnTable> getFilmsFromCinema(int id);
     19
    1520}
Note: See TracChangeset for help on using the changeset viewer.