Status message

A Jakarta Query Creation Review has been created for this proposal.

Jakarta Query

Thursday, April 25, 2024 - 11:21 by Gavin King
This proposal is in the Project Proposal Phase (as defined in the Eclipse Development Process) and is written to declare its intent and scope. We solicit additional participation and input from the community. Please login and add your feedback in the comments section.
Is this a specification project?
Patent License
Implementation Patent License
Parent Project
Proposal State
Community Review
Background

Object-oriented query languages

A data structure in an object-oriented language is a graph of objects interconnected by unidirectional object references, which may be polymorphic. Some non-relational databases support similar representations. On the other hand, relational databases represent relationships between entities using foreign keys, and therefore SQL has no syntactic construct representing navigation of an association. Similarly, inheritance and polymorphism can be easily represented within the relational model, but are not present as first-class constructs in the SQL language. An object-oriented query language is a dialect of SQL with support for associations and subtype polymorphism.

Historical background

Object-oriented dialects of SQL have existed since at least the early 90s. The Object Query Language (OQL) was an early example, targeting object databases, but was never widely used, since object databases were themselves not widely adopted. Hibernate Query Language (HQL) and the Enterprise JavaBeans Query Language (EJB-QL) were both introduced in 2001 as query languages intended for use with object/relational mapping. HQL was widely adopted by the Java community and was eventually standardized as the Java Persistence Query Language (JPQL) by JSR-220 in 2006. JPQL has been implemented by at least five different products and is in extremely wide use today. On the other hand, since JPQL is defined as part of the Jakarta Persistence specification, it has not been reused outside the context of object/relational mapping in Java. More recently, Jakarta Data 1.0 introduced the Jakarta Data Query Language (JDQL), a strict subset of JPQL intended for use with non-relational databases. It is now inconvenient that JDQL and JPQL are maintained separately by different groups, and there is some risk of divergence between the two specifications.

Scope

Jakarta Query defines an object-oriented query language designed for use with Jakarta Persistence and Jakarta Data, consisting of a core language that can be implemented by Jakarta Data providers using non-relational datastores and an extended language tailored for Jakarta Persistence providers or other persistence technologies backed by relational databases.

The language is closely based on the existing query languages defined by Jakarta Persistence and Jakarta Data, and backward compatible with both.

This specification fills the gaps and clarify ambiguities in the current specification of JPQL, and adds new functionality as appropriate.

Description

Jakarta Query defines the syntax and semantics of the query language itself, including the type system of the language. 

Jakarta Query prioritizes clients written in Java. However, it is not by nature limited to Java, and implementations in other sufficiently Java-like programming languages might be contemplated.

The language is closely based on the existing query languages defined by Jakarta Persistence and Jakarta Data.

The Jakarta Query project will not cover:

  • the Java APIs used to execute queries written in the language, nor
  • how the query language maps to, or is implemented for, any particular database technology.
Why Here?

This work is intended for reuse by Jakarta Persistence and Jakarta Data, and grows out of the needs of those specifications.

Future Work

The initial work will involve refactoring and reintegrating the JDQL and JPQL specifications, aligning on a common language, and cleaning up gaps and ambiguities in the existing specification of JPQL.

Project Scheduling

Work will begin this year.

Project Leads
Interested Parties

Jakarta Persistence, Jakarta Data, Red Hat, Oracle, IBM

Initial Contribution

The existing work in chaper 4 of Jakarta Persistence and chapter 5 of Jakarta Data are the starting point for this work.

Source Repository Type