• 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:

JDO & JPA

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ranchers,

I am confused between these two things.. JDO and JPA. Why two different framework for the same thing ? What level of understanding I need to have on JDO for the exam.

I already have read JPA. Do, I need to study JDO as well ? Or should I just remember the few differences like JPA is only for RDBMS, JDO supports many different databases; JDO more mature than JPA. ( I know only these two :-( )

Appreciate your help.

Thanks,
Naveen


 
Ranch Hand
Posts: 256
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi .
Can you suggest me one good book for JPA.
Thanks,
Pratap.
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Pratap,

Below are JPA resources:

(i) EJB 3.0 JPA Specification (JSR 220)

(ii) Part 5 on Java EE 5 Tutorial from Official website (http://java.sun.com/javaee/5/docs/tutorial/doc/bnbpy.html)

(iii) Part 7 on ejb-3 in action (Implementing domain models)


Regards,
MR
 
Ranch Hand
Posts: 1936
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JDO has more flexibility than JPA. JDO supports any type of datastore whereas JPA is so narrowed and limited to RDBMS only.
JDO 2 also has more features than JPA1.

http://db.apache.org/jdo/why_jdo.html
http://db.apache.org/jdo/jdo_v_jpa.html

 
reply
    Bookmark Topic Watch Topic
  • New Topic