Can the isolation level be changed per transaction if using Hibernate?
I want to add it to the following code:
int num = entityManager.createNamedQuery("deleteUserInfo")
.setParameter("userId", userId).executeUpdate();
Can the isolation level be changed per transaction if using Hibernate?
I want to add it to the following code:
int num = entityManager.createNamedQuery("deleteUserInfo")
.setParameter("userId", userId).executeUpdate();