Reputation: 34424
i am using Hibernate with oracle . What will be default isolation level if transaction if i don't set it explicitly. Will it be read_commited (default for oracle)?If i want to set it something else say serilizable how can i set it in hibernate?
Upvotes: 2
Views: 7027
Reputation: 3536
Will it be read_commited (default for oracle)?
Yes
If i want to set it something else say serilizable how can i set it in hibernate?
Look for hibernate.connection.isolation config param in hibernate manual. You may also check session lock
Upvotes: 1