Outils pour utilisateurs

Outils du site


glossaire:jdo

Table des matières

JDO

Java Data Objects

JDO est un standard informatique basé sur Java permettant l'accès aux données de façon transparente et unifiée.

JDO is a standard way to access persistent data in databases, using plain old Java objects (Plain Old Java Objects (POJO)) to represent persistent data. The approach separates data manipulation (done by accessing Java data members in the Java domain objects) from database manipulation (done by calling the JDO interface methods). This separation of concerns leads to a high degree of independence of the Java view of data from the database view of the data.

Interfaces are defined for the user's view of persistence:

  • PersistenceManager: the component responsible for the life cycle of persistent instances, Query factory, and Transaction access
  • Query: the component responsible for querying the datastore and returning persistent instances or values, Java Data Objects Query Langage (JDOQL)
  • Transaction: the component responsible for initiating and completing transactions

Voir:

glossaire/jdo.txt · Dernière modification : 19/05/2012 00:18 de 127.0.0.1

Sauf mention contraire, le contenu de ce wiki est placé sous les termes de la licence suivante : CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki