• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Hibernate uncommitted read options (db2 with ur)

 
Ranch Hand
Posts: 110
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hibernate allows us to specify default connection isolation modes

For read-uncommited, or Connection.TRANSACTION_READ_UNCOMMITTED, you can set hibernate property as (?):
<prop key="hibernate.connection.isolation">1</prop>

How is this different from specifying "with ur" by adding an interceptor or modifying the hibernate core classes as per:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-3644?

Thanks
Krishna
reply
    Bookmark Topic Watch Topic
  • New Topic