1
vote
1answer
18 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
0answers
14 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
49 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 ...
0
votes
0answers
33 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
29 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
1answer
26 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
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
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
1answer
38 views

JPA - select with join - how to make two related tables

I have two tables with relacionship by id_employee. --------------------------- --------------------------- table employee table timesheet --------------------------- ...
3
votes
0answers
37 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
1answer
47 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
1answer
66 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 ...
0
votes
0answers
28 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
43 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
53 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
49 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
44 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
22 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
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
65 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> ...
0
votes
1answer
38 views

ClassCastException when executing SELECT query

Currently I upload a CSV file which contains the following columns to the Google App Engine datastore: id, roleName, eggName, highestAllTimePrice, lowestAllTimePrice, averagePrice And the result of ...
1
vote
0answers
47 views

JPQL/Hibernate limitation using constructor expression in SELECT

From my reading of the JPA 2.0 spec, the following should be valid: select e.employeeId, new com.foo.Custom(e.employeeName, e.employeeCity) from Employee e However, Hibernate complains about this ...
0
votes
1answer
24 views

How we can include/alternate “ON” keyword in JPQL

I have two tables where I want to have left join, my query looks following SELECT * FROM BP_USER a LEFT JOIN BP_USER_BUSINESS b ON a.bpin = b.bpin; When I tried to include ON in jpql, it ...
0
votes
1answer
255 views

Subsitute for Month,year,date functions in jpa

I want to execute this query in JPA.But i am getting error while executing this query.How to use Month(),Year() in JPA We can use these in native SQL Query.But how to use it? Please help me.Thanks in ...
1
vote
2answers
57 views

JPQL query: use ORDER BY case insensitively

Using this thread (which is very helpful) so I do the same to may jpql query(very simple, just select all record but need to sorted by 'NAME' field): SELECT o, LOWER(o.name) AS nameInOrder FROM ...
0
votes
2answers
95 views

Transaction required exception on execute update for JPQL update query

I get this error when I try to run this code. Error: javax.persistence.TransactionRequiredException: executeUpdate is not supported for a Query object obtained through non-transactional access of a ...
0
votes
3answers
81 views

Can't get a collection using a JPQL query

I have an entity class containing a collection: @Entity(name = "Directory") @Converters({@Converter(name = "PathConvert", converterClass = PathConvert.class)}) public class Directory { @Id ...
0
votes
0answers
112 views

JPA @OneToMany join abstract entities and it's subclass using CriteriaBuilder

I'm trying to join this classes to get all users who has detail A, but instead I got all users with UserData. Ithik it is becouse entity UserData is join with CascadeType.ALL @Entity ...
0
votes
1answer
120 views

Java EE getResultList() return just object not relevant class type object

I am using this code to retrieve an object from a database. This code returns an object, but the type of that object is just Object. I however want to return the type Pcinitialdata. As said, it ...
1
vote
1answer
51 views

JPQL Query for Java EE Project

I am a beginner in JPQL queries and I don't understand how can I translate an SQL query in a JPQL query: I have 2 tables: Customer(idCustomer,...,idMacroMarket) ...
1
vote
1answer
30 views

joining @ManyToOne's @OneToMany

Each Account has a Origin via @ManyToOne Each Origins has Shadows via @OneToMany With given Root<Account>, How can I join those Shadows so that I can put some conditions for them on where? ...
2
votes
1answer
169 views

JPA Query - JPQL to select parents that have ALL children with a property in a SET of values

I'm trying write a JPQL query to return entities where all of that entity's children have a property that is in a set of values. It is similar to the following question, but where there are multiple ...
0
votes
1answer
64 views

Retrieving a HashMap

A entity containing a HashMap (annotated with ElementCollection) will be persisted using Eclipse Link / JPA. By using the following JPQL query the HashMap should be retrivied now: SELECT t.myMap ...
0
votes
1answer
72 views

JPQL query updating CollectionTable

I have the following entity: @Entity(name = "Directory") @Table(name = "Directory") public Directory { @Id @Column(name = "id") protected String id; @ElementCollection @MapKeyColumn(name = "file") ...
2
votes
2answers
61 views

JPQL LIKE expression with attributes of target entity in a null valued relationship

I have an entity named Item with relationship to another entity Category which can be null. The two entities are as follows: Item @Entity public class Item { @Id private String id; ...
1
vote
2answers
175 views

TypedQuery instead of normal Query in JPA

Is it possible to write this Query as a TypedQuery and let the two Long's run into a Object with two public Long fields inside. Query q = em.createQuery( "SELECT c.id, COUNT(t.id) " + ...
0
votes
1answer
45 views

Exclude items with JPQL “not in”

I want to exclude Items tagged with certain tags with the following JPQL query: select distinct i from Item i join i.tags t where t not in (:excludedTags) It works if an item has only a single tag ...
0
votes
1answer
49 views

How to ignore the Time in a Date Query with JPQL?

I'm having problems doing a query on JPQL using a Date (and ignoring the Time). This is my method: @Override public List<Event> findByDayAndStatus(User usr, Date d, char status) { Query q = ...
0
votes
3answers
88 views

TypedQuery with ManyToMany relations

I have a problem to create query with TypedQuery interface, NamedQuery and many-to-many relationship. Here is my Report entity: @Entity @Table(name = "REPORT") @NamedQueries({ @NamedQuery(name = ...
6
votes
2answers
134 views

JPA Warning: “No mapping is associated with the state field path 't.progress'”

I'm using JPA (EclipseLink 2.4.1) with a mapping-file containing named-queries. Eclipse shows me the following warning message in my mapping file: No mapping is associated with the state field path ...
2
votes
1answer
108 views

find(Class,id) and JPQL get different object (JPA)

I am using Hibernate 4.1.10.Final as my JPA provider, Spring and Spring MVC. There are two entities: @Entity @Table(name = "a") public class A { @Id private String id; ...
0
votes
2answers
646 views

JPQL equivalent of SQL query using unions and selecting constants

I've written a SQL query that basically selects from a number of tables to determine which ones have rows that were created since a particular date. My SQL looks something like this: SELECT ...

1 2 3 4 5 11