M Sach
M Sach

Reputation: 34424

What will be default isolation level of transaction in case of hibernate with oracle?

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

Answers (1)

haps10
haps10

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

Related Questions