Advertisement
bigbigking

Untitled

Jun 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public Book getBookByTitle(String title){
  2. Query nativeQuery = entityManager.createNativeQuery(
  3. "SELECT * FROM book WHERE title = :title ", Book.class
  4. );
  5. nativeQuery.setParameter("title",title);
  6. return (Book) nativeQuery.getSingleResult();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement