The Java Persistence Query Language (JPQL) is a platform-independent object-oriented query language defined as part of the Java Persistence API specification.
0
votes
0answers
22 views
How to best implement 'Filtering' on multiple fields from 4 tables using JPA criteria queries?
I am using JPA for my project to query database and all entities are mapped according to DB design via annotations. DB is postgreSQL.
First let me explain the table structure in brief:
Table_A
Aid
...
1
vote
2answers
26 views
How do I do a “deep” fetch join in JPQL?
I don't think I will ever fully understand fetch joins.
I have a query where I'm attempting to eagerly "inflate" references down two levels.
That is, my A has an optional Collection of Bs, and each ...
0
votes
1answer
19 views
How to get the entry index in a query with ORDER BY
I need to figure out a way to get the index of every entry in a query result, let me show an example:
Suppose we have 3 entries in the Person table.
Willie
Mike
Alan
And I want to query that ...
1
vote
2answers
24 views
PreUpdate listener triggered during empty update
I have an entity with the last modified attribute:
@Temporal(TemporalType.TIMESTAMP)
private Date lastModified;
@PreUpdate
@PrePersist
protected void onUpdate() {
lastModified = new Date();
}
...
0
votes
2answers
34 views
Convert SQL statement to JPQL statement
I wonder how I convert this SQL statement to JPQL:
SELECT sum(price) AS Income, count(*) AS Passages, Station.Name
FROM Passage
INNER JOIN station ON passage.stationId = station.id
GROUP BY ...
0
votes
1answer
51 views
How to instantiate a object with a constructor that takes long if table only contains null?
im trying to do this query, but get IllegalArgumentException when trying to instantiate my PassageStatistics object that takes long parameters in its constructor, when the table is empty (only ...
-1
votes
1answer
23 views
Getting all the records from Patient entity with primary insurance of the patient can be 'P' that is primary
I want the following sql query in JQPL syntax: Please help
select P.*,PIN.INSURANCE_COMPANY_ID
from PATIENT_INSURANCE PIN right join PATIENT P ON (PIN.Patient_ID = P.ID and PIN.INSURANCE_TYPE = 'P' ...
0
votes
0answers
34 views
Oracle error with queries
I have a problem with Oracle with the queries. I done a JPA database with MySQL and the queries there works well, but when I use them in Oracle, they dont give me a result.
For example:
...
0
votes
1answer
24 views
Error with JPQL
I have a problem with JPA and JPQL. I have the next query:
String query="SELECT c from Cliente c";
Query quer=em.createQuery("Select c from Cliente c");
List<Cliente> lista= ...
2
votes
1answer
32 views
42Y36: SELECT list may only contain grouping columns, grouping 'table.*' not allowed
The following query works like a beauty. Now I'm trying to select PRODUCT.* which leads to errorcode
42Y36: (Column reference '<value>' is invalid. For a SELECT list with a GROUP BY, the list ...
0
votes
0answers
28 views
JPQL polymorphism, TYPE operator syntax error
I have a Article class which is extended by Recipe and Review classes and when I want to get just the article class using the TYPE operator like this,
getEntityManager().createQuery("SELECT e FROM " ...
0
votes
1answer
27 views
Casting in JPQL when using NEW
I'm using Eclipselink, and I have the following JPQL query:
SELECT NEW javax.faces.model.SelectItem((java.lang.Object) s.id, s.description) FROM Status s WHERE s.active = TRUE
The cast before s.id ...
1
vote
0answers
20 views
Convert a SQL query in Java Persistence Query Language (JPQL)
I'm having a little problem to convert this SQL query to JPQL:
select max(datePurchase) from purchases where userId = id and date_trunc('day',datePurchase)
in (select distinct ...
1
vote
1answer
24 views
JPQL - multiple joins with OR
I'm using JPA and wondering the best way to construct this query.
Here is my data model (this is totally contrived and non-sensical):
Table "Thing" has a many-to-many relationship with tables ...
0
votes
0answers
11 views
Book Recommendations on JPQL [closed]
I need to learn JPQL and I am looking for recommendations on a good book that will give me a better understanding on how to use OneToMany, ManyToMany, etc.. and tie in INNER JOINS and WHERE clauses.
...
0
votes
0answers
19 views
JOIN and Group By in JPQL
I have the following query:
SELECT count(p.name), pg.name
FROM
products.product p
right JOIN
products.product_group pg ON
p.product_group_id=pg.id
and pg.id = 1
...
0
votes
1answer
20 views
Join tables that are not directly connected to each other
I have three entities:
Customer
id pk
Address
id pk
customerid
Phone
id pk
custoemrid
How would I join in JPQL the Address with Phone Entity via customerid without using ...
1
vote
0answers
39 views
JPQL / Criteria API Order By MAX OneToMany association
I have the following data model: Customer with OneToMany relationship to Order.
@Entity
public class Customer{
...
private Long id;
@OneToMany
private Collection<Order> ...
0
votes
1answer
18 views
Need some explanation about JPQL, JPA and Glassfish to persist data
I'm new to JSP and here is what I want to know. I'm simply printing some data on my HTML page :
${movie.title}
I have a Movie Entity, and a MovieManager EntityManager. When I want to add a review ...
0
votes
0answers
41 views
Configuring NetBeans 7.3 JPQL editor?
I have a RESTful service that builds and runs fine. However, when I try to use the JPQL editor, it gives the error:
java.lang.Exception: You need to add your persistence provider library either to ...
0
votes
1answer
41 views
JPA - select with join - how to make two related tables
I have two tables with relacionship by id_employee.
--------------------------- ---------------------------
table employee table timesheet
--------------------------- ...
0
votes
1answer
22 views
unexpected results of join and count in jpa query
I want to retrieve the count of tags used among all posts for a specific user.
e.g. If one user has three posts written and for two posts are tagged with 'someTag', then the query should written the ...
3
votes
0answers
39 views
JPQL Hibernate NULLS LAST being ignored
UPDATED - see answer in comment
I'm aware that CriteriaQuery.orderBy does not support NULLS LAST. I was trying to use a TypedQuery and noticed that it seems to just ignore everything after "NULLS ...
0
votes
0answers
15 views
Trying to convert an SQL statement to JPQL statement
i'm a little new about JPQL query, this is what i have so far:
SELECT p, ( 3959 * acos( cos( radians(:lat) ) * cos( radians( b.latitude ) ) * cos( radians( b.longitude ) - radians(:lng) ) + sin( ...
0
votes
2answers
35 views
JPQL 2.0 - query entities based on superclass entity field
I have Entity (not MappedSuperclass) Person (with id, name, surname).
I also have Entity Employee extends Person (with other attributes, unimportant).
Inheritance Strategy is single table.
Now I want ...
0
votes
1answer
48 views
Get grouped MAX results of another table in JPQL
I have two entities:
Account, containing the attribute accountId
ImportRun, which has a attribute runId.
There is a one-to-many (bidirectional) relationship from ImportRun to Account.
It is ...
0
votes
1answer
42 views
How to query properties of an @Entity attribute mapped using EclipseLink @ReadTransformer and @WriteTransformer?
I am using EclipseLink 2.4.2.
I have an @Entity with an attribute of type Money, which is a final class from an external library. Instances of Money are immutable and must be persisted as two ...
0
votes
0answers
29 views
JPA2 query mapping constructor expression for same table twice not working
I have a problem with mapping constructor expression in JPA2 query:
this is the declaration of tables and query in JPA2:
QLC430_KatastarJedinicaImovine kji = ...
0
votes
1answer
67 views
JPA Query with openJPA only works as 'native' SQL, but it does not when transformed as JPQL or with JPA Criteria
I have a SQL query and the mapping of the classes. Using openJPA, if the query is made as a @NamedNativeQuery it works fine, returning the correspondent class and the expected result. If it is ...
1
vote
1answer
96 views
IN and = operator in JPA query language
I have a problem regarding jpa query.
There are two tables i.e. Post table and Tag table
There is many to many relationship between Post and Tag
Now I want to write a query such that when multiple ...
0
votes
0answers
29 views
Why does hibernate generate an incorrect inner join
I have a table T1 which has a many-to-one relationship with T2 and a many-to-one relationship with T3.
Now I wrote the following JPQL query:
select count(a), a.b.some_field_in_T2 from t1 a
where ...
0
votes
2answers
31 views
JPQL multiple select
I want to extract all data from TypeCmplt like this :
public List<TypeCmplt> listerrTypeCmplt()
throws DaoException {
Query query = cmpltTitreEM.createQuery("select t.cdTypeCmplt, ...
0
votes
1answer
44 views
JPQL query - order by count
I need to implement a named query, that returns a list of events sorted by number of friends who go to the event.
For example, this query return a list of events sorted by number of all people who go ...
0
votes
1answer
56 views
JPQL NOT EXISTS in ObjectDB
I am trying to migrate my Spring project from Hibernate to ObjectDB. On ObjectDB page, they say that ObjectDB is 100% compatible with JPA. However, I have problem with this JPQL query:
SELECT e FROM ...
1
vote
2answers
50 views
Implement a generic search on persisted JPA entities
Say we have an entity Foo that contains various data fields, one being a List<Bar>. In turn, a Bar has various data fields, one being a List<Snafu>. We want to give the user an input ...
1
vote
1answer
45 views
Search JPA entities that contain Lists using fields in those Lists
Let's say we have an entity named Foo. This Foo entity contains a List of Bar entities. A Bar entity has a name.
We persist a number of Foo records.
Now, I present the user with a JSP page to ...
0
votes
1answer
26 views
IN statment in JPQL with GAE
I try to use JPA with GAE, and i have next problem:
when I perform this query:
select x From Advert x where x.advertType in (15)
or
select x From Advert x where x.advertType in (20)
Entity ...
2
votes
1answer
53 views
Ordering by some fields in a table without relationship
Hibernate 3.5
JPA 1.0
The annotation @OrderBy is used only for one to many or many to many relationship on the list-field. But I want it to use for the single table, that should be ordered by some ...
0
votes
0answers
23 views
JPQL query - how to access a list
I am using jpql.
But I am having trouble creating a query because "tgDeclarationRglts" is a "List".
How can I access this list in the query to retrieve the "idDeclarationRglt" ?
Thank you !
The ...
0
votes
1answer
22 views
How to combine trim and lower functions in jpql
I need to perform the following select:
select c.address from Customer c where lower(trim(c.name)) = :name
But I get the following exception:
javax.persistence.PersistenceException: ...
0
votes
0answers
33 views
sql server query to JPQL query
select distinct cargocode,name,vdno,(SELECT CAST(convert(varchar(20),ID) + ', ' AS VARCHAR(MAX))
FROM [cargo]
WHERE (vdno = T0.vdno) FOR XML PATH ('')) AS [ID No] from cargo T0
I want to convert ...
1
vote
0answers
26 views
MySQL's LPAD String Function in JPA Query?
May I know how to convert the following MySQL SQL to JPA query?
SELECT * FROM ORDER
WHERE LPAD(BATCH, 2, ' ') < LPAD('X', 2, ' ') ;
What I couldn't figure out is the LPAD() string function in ...
0
votes
1answer
62 views
Select only JPA Collection members meeting condition
I'm trying to select entries for Entity A where all of the children in its collection of CReference entities meet a condition. The query I currently have only requires the conditions to be met on at ...
0
votes
1answer
66 views
jpa 2 query to retrieve data using join table
I have table structure as follows
table user: iduser, firstName, lastName, username, email, dateJoined, dateOfBirth, password
table tag : idtag, tagName
table post: idpost, title, content, iduser, ...
4
votes
1answer
96 views
JPQL with subquery to select max count
I'm trying to write a jpql query to select the user with the most comments. If two users have the same amount of comments I want to select both.
I tried this, something like this:
SELECT
c.user, ...
0
votes
0answers
48 views
JPA2 collections
Sorry for my bad EN.
I have very simple entity
@Entity
@Table(name = "\"Book\"")
public class Book extends DomainLong {
@Column(name = "\"title\"")
private String title;
@Column(name = ...
0
votes
0answers
15 views
Check row duplication in JPQL
I'm interested is this valid JPQL query for checking table key:
sb.append("select a from Agents2Campaign a \n");
sb.append("where (a.Id <> " + agent.getId() + ") \n");
I always get null as a ...
0
votes
1answer
35 views
JPDA Query and Play - User and Roles (JOIN)
I have two play JPA Objects User.java & UserRole.Java
public User(String email, String password, String firstName, String lastName, Status status, List<UserRole> roles){
this.email ...
0
votes
1answer
67 views
What is a bulk update in the context of JPQL queries and JPA persistence context?
The JPA 2.0 specification (JSR 317) says:
The persistence context is not synchronized with the result of the bulk update or delete.
Exactly what is a bulk update?
In my view, there is [or rather ...
0
votes
1answer
58 views
Java EE / jpa /jpql
I am trying to improve my skills in Java EE
I try to use this Query which I found it Here
SELECT COUNT(e) FROM Object e WHERE TYPE(e) <> Country
i use it like that
TypedQuery<String> ...
