Advertisement
alexandrecoussy

Untitled

Mar 30th, 2022
745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1.     String debugSql = "select insurer, date from stock where insurer=:insurerParam and date=:dateParam";
  2.     Query query = entityManager.createNativeQuery(debugSql);
  3.     query.setParameter("insurerParam", "CARDIF");
  4.     query.setParameter("dateParam", "2022-03-11");
  5.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement