Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference between SDO and JDO in java

Tags:

java

jdo

sdo

what is the difference between JDO (JSR 243) and SDO (JSR 235) in Java; what set of open source providers are available for these java specifications

like image 581
Laxmikanth Samudrala Avatar asked Apr 07 '26 02:04

Laxmikanth Samudrala


1 Answers

From this article:

[...] JDO looks at the persistence issue only [...] whereas SDO is more general and represents data that can flow between any J2EE tier, such as between a presentation and business tier.

EclipseLink is one SDO provider, Apache's DB project is one JDO implementation.

like image 156
Dave Newton Avatar answered Apr 08 '26 16:04

Dave Newton