Tagged Questions
The Java Persistence Query Language (JPQL) is a platform-independent object-oriented query language defined as part of the Java Persistence API specification.
15
votes
1answer
8k views
JPQL IN clause: Java-Arrays (or Lists, Sets…)?
I would like to load all objects that have a textual tag set to any of a small but arbitrary number of values from our database. The logical way to go about this in SQL would be to build an "IN" ...
9
votes
6answers
6k views
Tool to Execute JPQL Queries?
Is there any sort of tool available which allows one to execute JPQL queries against a database "directly"? I would like to type JPQL queries directly into a window and execute them.
Of course it ...
7
votes
1answer
1k views
What to use: JPQL or Criteria API?
My Java application is using JPA for object persistence. The business domain is very simple (just three classes are persistent, with 3-5 properties in each). Queries are simple as well. The question ...
7
votes
1answer
7k views
Parameter in like clause JPQL
I am trying to write a JPQL query with a like clause:
...LIKE '%:code%'
I would like to have code=4 and find
455
554
646
...
I cannot pass :code = '%value%'
namedQuery.setParameter("%" + ...
6
votes
2answers
295 views
JPQL: Receiving a Collection in a Constructor Expression
I'm using JPQL and want to receive some normal parameters and a collection in a Constructor Expression to directly create the DTO-objects. But if the Collection is empty, I always get a error because ...
6
votes
3answers
7k views
Java: JPQL date function to add a time period to another date
SELECT x FROM SomeClass
WHERE x.dateAtt BETWEEN CURRENT_DATE AND (CURRENT_DATE + 1 MONTH)
In the above JPQL statement, SomeClass has a memebr dateAttr, which is a java.util.Date and has a ...
5
votes
1answer
154 views
Insert to JPA collection without loading it
I'm currently using code like this to add a new entry to a set in my entity.
player = em.find(Player.class, playerId);
player.getAvatarAttributeOwnership().add(new AvatarAttributeOwnership(...));
...
5
votes
3answers
2k views
JPA Query MONTH/YEAR functions
How can I write a JPA query using MONTH function just like sql query?
@NamedQuery(name="querybymonth", query="select t from table1 t where MONTH(c_Date) = 5")
When I use the above pattern for ...
5
votes
3answers
2k views
Are SQL injection attacks possible in JPA?
I'm building a Java Web Application using Java EE 6 and JSF-2.0, using the persistence API for all database operations.
The back-end is MySQL, but I have used the EntityManager functions and Named ...
5
votes
1answer
1k views
JPA Date Arithmetic?
Is it possible to perform date arithmetic using JPA/Hibernate? For example, I have an entity with a java.util.Date field indicating when the row was created. Is it possible to perform a query using ...
4
votes
3answers
74 views
Java EE/JPA way to add new tables/entities to database
I have a mysql database that I want to add the functionality of adding a new table to the database. I could probably easily find the example of the JPQL for this but how would I then automatically ...
4
votes
1answer
50 views
Difference in result of my Native query and JPQL(JPA)
my native query is (this is work):
Update XXX SET preDeck=deck, deck=deck+1 WHERE ...
the result of native query is: deck=1 and preDeck=0 (it is what I want)
But in JPQL it is not happend:
...
4
votes
3answers
165 views
Why is a Hibernate JPQL Type Cast necessary for String
I am using the Play! Framework for a small application. In a Model I have the following Query:
public static ApplicationUser getByUserName(String userName) {
return ApplicationUser.find("SELECT u ...
4
votes
2answers
499 views
JAVA: NamedQuery String problem
Hello guys I am having some problems with exact matches while doing a NamedQuery.
I am currently using something like this:
@NamedQuery(name = MyClass.GET_ENTRY_BY_NAME, query = "select e from Entry ...
4
votes
1answer
396 views
Doing an “IN” query with Hibernate
I have a list of IDs in a String, and want to use Hibernate to get the rows with these IDs. TrackedItem is a Hibernate/JPA entity (sorry if I'm getting the naming mixed up here).
My code is:
String ...
4
votes
1answer
1k views
Google App Engine - DELETE JPQL Query and Cascading
I noticed that the children of PersistentUser are not deleted when using the JPQL query below. However, the children are deleted if I perform an entityManager.remove(object). Is this expected? Why ...
4
votes
2answers
2k views
JPQL Create new Object In Select Statement - avoid or embrace?
I've learnt recently that it is possible to create new objects in JPQL statements as follows:
select new Family(mother, mate, offspr)
from DomesticCat as mother
join mother.mate as mate
left ...
3
votes
1answer
123 views
JPA Query For Exists In
I have the following Entities (reduced and renamed for this example)
@Entity
public class Case {
@Id
private Long id;
@ManyToOne(optional=false)
private CourtConfiguration courtConfiguration;
...
3
votes
1answer
44 views
Sorting a list of JPQL Entities
I've searched long and hard for an answer, but I haven't had any luck so far. I'm trying to retrieve and sort a list of objects via a JPQL query, but since the query itself uses a lot of joins between ...
3
votes
2answers
141 views
How to create an 'instance of' -like query in JPA 2.0?
Say we've got an abstract @Entity Animal, and several entity classes that extend Animal, including Dog, Cat, Monkey and Bat.
How can I filter the results based on the extending entity's class?
...
3
votes
1answer
93 views
overriding lazy fetch in OneToMany association
I've been facing the LazyInitializationException and had three solutions by googling it:
add myList.size() in getMyList()
override the lazy fetch (join fetch)
eager fetch
i'm avoiding the eager ...
3
votes
1answer
311 views
JPA 2 “member of” syntax doesn't work with members of superclass
Basically i have a named query "findServerWithNic" which refuses to work:
@Entity
@Table(name = "vnm_server")
@DiscriminatorValue("S")
@NamedQueries({
@NamedQuery(
...
3
votes
2answers
2k views
IN-clause in HQL or Java Persistence Query Language
I have the following parametrised JPA, or Hibernate, query:
SELECT entity FROM Entity entity WHERE name IN (?)
I want to pass the parameter as an ArrayList<String>, is this possible? Hibernate ...
3
votes
3answers
415 views
Doing a query for each day in a period, turning it into one query
I have this:
public Map<Day,Integer> getUniqueLogins(long fromTime, long toTime) {
EntityManager em = emf.createEntityManager();
try {
Map<Day,Integer> resultMap = new ...;
for ...
3
votes
1answer
1k views
Hibernate/HQL/JPQL: what's wrong with a CASE WHEN … THEN NULL ELSE … END (ClassCastException)?
I have the following JPQL/HQL snippet in a SELECT
...
MAX(CASE WHEN scf.finalScore = 20 OR scf.finalScore = 0 THEN NULL ELSE scf.finalScore END) AS hi,
MIN(CASE WHEN scf.finalScore = 20 OR ...
3
votes
1answer
275 views
EJB/JPA: Is it called JPQL or EJBQL?
Is the JPA query language called JPQL or EJBQL? I keep reading about them here and there, JPQL seems to appear slightly more often, but frameworks like JBoss Seam use EJBQL everywhere, so which one is ...
3
votes
1answer
1k views
Using JPA 2.0 Criteria API and cast causes generated JPQL to fail in Hibernate
I am a first time user of the new JPA 2.0 Criteria API and I 'm running into a problem when I need to cast a number field to String to compare it with a String parameter. Reason is that I want to ...
3
votes
1answer
543 views
Specifying columns in jpql select causes casting error
When I specify columns in my jpql/jpa 2.0 query, i.e. select p.id, p.lastName, p.firstName from Profile p where p.group = :group I get the following error: [Ljava.lang.Object; cannot be cast to ...
3
votes
2answers
360 views
Ordering by varying columns in JPQL/Hibernate
I have a table of Sessions. Each session has "session_start_time" and "session_end_time". While the session is open, the end time is empty. I want to fetch the list of sessions, and order it by the ...
3
votes
1answer
285 views
JPQL exclude subclasses in a query
If I have a class Apple that extends Fruit, how do I write a JPQL query to return all objects that are strictly Fruits and not Apples?
3
votes
1answer
5k views
JPA: JOIN in JPQL
I thought I know how to JOIN in JPQL but apparently not. Can anyone help me?
select b.fname, b.lname from Users b JOIN Groups c where c.groupName = :groupName
This give me Exception
...
3
votes
2answers
304 views
Sophisticated JPQL String Query
I am trying to execute a pretty-sophisticated query on a string field in the database. I am not very experienced at JPQL, so I thought I would try to get some help.
I have a field in the database ...
3
votes
1answer
922 views
JPA Query optimization by avoiding JOIN to lookup table?
Imagine a table emp:
CREATE TABLE emp
( id NUMBER
, name VARCHAR
, dept_code VARCHAR
)
and a table dept:
CREATE TABLE dept
( code VARCHAR
, name VARCHAR
)
...
3
votes
1answer
1k views
Recursive JPA query?
Does JPA 2 have any mechanism for running recursive queries?
Here's my situation: I have an entity E, which contains an integer field x. It also may have children of type E, mapped via @OneToMany. ...
3
votes
1answer
563 views
Correct way to count associated objects using JPQL
What is the correct way to write this JPA query? I am just guessing as I cant work it out or find it in my JPA book.
Query query=em.createQuery("select m from Meeting m where count(m.attendees) = ...
3
votes
1answer
3k views
jpql limit number of results
how to limit the number of results from database when I don't care about the other?
select e from Entity e /* just ten results, howto? */
3
votes
2answers
1k views
JPA : Many to Many query help needed
I have four entities that are involved in a query that I'm having a little trouble with. The relationship is as follows : Exchange----*Contract*----*Combo----*Trade and the (simplified) entities are ...
3
votes
3answers
2k views
Is this possible: JPA/Hibernate query with list property in result?
In hibernate I want to run this JPQL / HQL query:
select new org.test.userDTO( u.id, u.name, u.securityRoles)
FROM User u
WHERE u.name = :name
userDTO class:
public class UserDTO {
private ...
3
votes
2answers
1k views
EclipseLink JPQL (Glassfish v3): join fetch syntax problem?
With Hibernate I'm used to do something like the following:
select n from NetworkElement n join fetch n.site s where s.active is true
However, EclipseLink complains a lot about this:
Caused by: ...
3
votes
2answers
572 views
Using reserved JPQL keywords with JPA
I have an entity class called "Group" and NetBeans warns me "The entity table name is a reserved Java Persistence QL keyword".
A similar case would be the use of reserved SQL keywords.
Will this ...
3
votes
3answers
2k views
How do I use JPQL to delete entries from a join table?
I have a JPA object which has a many-to-many relationship like this:
@Entity
public class Role {
//...
@ManyToMany(fetch=FetchType.EAGER)
@JoinTable(
name="RolePrivilege",
...
3
votes
1answer
8k views
How to filter collection in JPA/JPQL?
I have two entities:
@Entity
public class Customer implements java.io.Serializable {
...
@OneToMany(fetch=FetchType.EAGER, mappedBy="customer")
private Set<CustomerOrder> ...
2
votes
1answer
24 views
Max number of collection elements for IN-clause with jpql
I would like to know if there is a limit on the size of a collection when using the IN clause.
select a from A where a.b IN (:c)
and c is a list(for example).
2
votes
0answers
44 views
Distinct selection over multiple columns using JPQL?
I have a JPA entity ("Entity") which has three fields - "id", "field1" and "field2", all of which are of type long.
I'm trying to write a JPQL (named) query to retrieve all Entity objects but with ...
2
votes
1answer
38 views
Strange JPQL issue: adding less restrictive query parameters returns less rows
We've got an entity model like this (non-related fields omitted for brevity):
@Entity
public class Invoice {
//The other portion of the sum that is invoiced from another payer.
...
2
votes
1answer
90 views
JPA string comparison
I've written a simple login system using a JPQL query, which always returns no result:
public boolean check(String name, String password) {
final String qstring="SELECT e FROM Muser e WHERE ...
2
votes
1answer
113 views
JPA and JPQL: NoResultException when selecting from multiple tables where one value is null
I'm using Java EE 6 and query a database using JPA's javax.persistence.Entitymanager. I have a JPQL query code snippet that looks like something like this:
Query query = entityManager.createQuery("
...
2
votes
1answer
143 views
JPA add seconds to date in query
I have a table called "Task" which has, among others, two columns:
Date_due: a TIMESTAMP date
Wait_in_seconds: a number (INT) of seconds
I want to add the Wait_in_seconds value to the date in the ...
2
votes
4answers
185 views
JPA: DELETE WHERE does not delete children and throws an exception
I am trying to delete a large number of rows from MOTHER thanks to a JPQL query.
The Mother class is defined as follows:
@Entity
@Table(name = "MOTHER")
public class Mother implements Serializable {
...
2
votes
2answers
80 views
Usecases that really need Hibernate HQL over JPQL
I know JPQL is a subset of HQL.
Are there any practical usecases (please give examples) that really need HQL specific features to be used (that means it is impossible or considerably difficult with ...