• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

about Jbdc driver

 
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I saw in weblogic server there are 2 types of type4 drive 1)Type 4 thin driver and another one id type 4 thin XA driver.So i want to know what is the difference between these two drivers.

Thanks
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Both are type 4 (ie thin) drivers, the XA version means it supports distributed transactions ie it can join in with transactions from other databases or other transactional protocols using two phase commit (2PC)

XA database drivers are useful in EJBs since the transaction demarcation can span several types of transaction and you still need to provide an all-or-nothing guarantee.

Dave
 
Sujittt Tripathyrr
Ranch Hand
Posts: 96
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks David :p
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic