Jakarta Persistence Query Language: Difference between revisions

Content deleted Content added
Add in-line citation.
Fixed harv-error
Line 21:
| website =
}}
The '''Jakarta Persistence Query Language''' ('''JPQL'''; formerly Java Persistence Query Language) is a platform-independent [[object-oriented]] [[query language]]{{sfn|Bauer|King|Gregory|2016}}{{rp|§12|p=284}} defined as part of the [[Jakarta Persistence]] (JPA; formerly Java Persistence API) specification.
 
JPQL is used to make queries against entities stored in a relational database. It is heavily inspired by [[SQL]], and its queries resemble SQL queries in syntax{{sfn|Bauer|King|Gregory|2016}}{{rp|§1.3|p=17}}, but operate against JPA entity objects rather than directly with database tables.{{sfn|Bauer|King|Gregory|2016}}{{rp|§2.2.3|p=26}}
 
In addition to retrieving objects (<code>SELECT</code> queries), JPQL supports set based <code>UPDATE</code> and <code>DELETE</code> queries.
Line 110:
 
==References==
*{{citationcite book
|last1 first1 = GavinBauer
| last1 first1 = KingChristian
|last2 first2 = BauerKing
| last2 first2 = ChristianGavin
| year last3 = 2016Gregory
|first3 = Gary
| year = 2016
| title = Java Persistence with Hibernate
| edition = Second
Line 121 ⟶ 123:
| pages = 880
| isbn = 978-1617290459
| url =
}}