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
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 = ...
1
vote
1answer
91 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
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
65 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, ...
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
1answer
50 views

Count entities in multiple tables

I Have a non-entity class public class CountryStatistics { public CountryStatistics(Long numTowns, Long numVillages) { ... } } For a given country i want to construct a statistics ...
2
votes
3answers
175 views

Use only subset of JPQL select columns for objects

I have entities Team, Game and TeamInGame. To select teams ordered by their last games i use: Query query = em.createQuery("select tg.team, max(tg.game.gameDate) as maxDate" + " from TeamInGame tg" + ...
0
votes
1answer
147 views

how to delete row from join table with jpa 2

i have a relationship one to many that generated a join table , what i need to do is to delete a row from that join table, but i dont even know how to do the jpql query to get to that table because ...
0
votes
0answers
46 views

JPQL query subclass property

i have these classes @Entity @Inheritance(strategy = InheritanceType.JOINED) public abstract class Subject extends AbstractEntity { protected String title; ... } @Entity public class Person ...
3
votes
1answer
125 views

Criteria API Create new Object In Select Statement

I now that I can create new object in select statement with criteria api using code something like that CriteriaBuilder cb... CriteriaQuery<Wrapper> q = cb.createQuery(Wrapper.class); ...
0
votes
3answers
336 views

Fetch all collections eagerly in JPA

Is it possible to fetch all collections in an entity hierarchy eagerly in a particular query only? For example, entity Department has a list of entity Employee. Employee has a list of entity Address ...
0
votes
1answer
102 views

JPA Criteria api query fails while JPQL goes through

I'm using JPA to manage my persistency layer. One of my my Criteria API throws an exception. I re-wrote it in JPQL and it works just fine so I guess I missed something in my criteria api version. Here ...
-1
votes
1answer
217 views

Criteria Builder Create new Object In Select Statement

I was wondering if it's possible to create such query like : em.createQuery( "SELECT NEW EmpMenu(p.name, p.department.name) " + "FROM Project p ").getResultList(); also is it ...
2
votes
2answers
191 views

JPA Criteria Builder

Currently , I am doing some JPA stuff, but having some problem, as described below : Table Structure- Id(Integer) , StatusType(String) , CreationTime(TimeStamp) I want to extract StatusType , ...
2
votes
2answers
444 views

EclipseLink - How to use empty collection in IN operator?

Is there any way to use empty collection in IN operator? List<Integer> idList = new ArrayList<Integer>(); Query query = em.createQuery("SELECT e FROM T e WHERE e.id IN ...
0
votes
1answer
790 views

JPQL Constructor Expression - org.hibernate.hql.ast.QuerySyntaxException:Table is not mapped

My original problem was hql join without foreign key reference but couldn't find any solution for this, hence moved forward with native query using JPA. createNativeQuery of entityManager returns ...
4
votes
1answer
826 views

JPQL statement returning boolean value

Is it possible to write JPQL query like following: select count(*) > 0 from Scenario scen where scen.name = :name that would return true/false boolean values depending of whether entity filling ...
1
vote
1answer
419 views

JPA @NamedQuery correlated subquery

I'm trying to create a @NamedQuery that will contain the following correlated subquery: @NamedQuery(name = "Drcomments.findByOrderDesc", query = " SELECT a FROM ( SELECT ROWNUMBER() OVER(ORDER BY ...
2
votes
2answers
2k views

How can I avoid the Warning “firstResult/maxResults specified with collection fetch; applying in memory!”?

I'm getting a warning in the Server log "firstResult/maxResults specified with collection fetch; applying in memory!". However everything working fine. But I don't want this warning. My code is ...
2
votes
1answer
1k views

How to deal with TypedQueries in JPA when using 2 Entities and an aggragate function with group by?

Until now I selected Entities like this: public List<Customer> findAll() { TypedQuery<Customer> query = getEntityManager().createNamedQuery(Customer.FindAll, Customer.class); ...
4
votes
3answers
564 views

How to query an M:N relationship with JPA2?

I have an an object (BlogPost) that contains an M:N collection of elements (Tags). How to query for an object (BlogPost) where at least one it its Tags matches an element in a set of Tags (defined by ...
0
votes
1answer
570 views

Suqueries in select clause with JPA

I need to execute a subquery in a select clause with Apache Openjpa 2. Does JPA support subqueries in SELECT clause? My Query is something like this: SELECT t.date, t.value, (SELECT ...
0
votes
0answers
117 views

using join tables as a parameter for a JPA

In the following entity class from database how to write a query to select from the table using the collection productsCollection2 as a parameter and retreiving productsCollection3.??? Can i use the ...
0
votes
0answers
85 views

How can I write criteria query?

I'm working on EJB3 and JPA2.0. I want to write a crieteria query for getting the records in the table. For eg. Entity name: Employees with fields name, designation, salary and Set<Bonuses> ...
0
votes
3answers
1k views

JPQL Many to Many conditional query

I have two entities: News and Tag with Many to Many relation. News has a Calendar field. I have an array of longs with some Tag ids and a Calendar. I want to get all Newses which have at least one Tag ...
0
votes
2answers
909 views

JPA - using long array in IN operator throws cast exception

am new to JPA and am able to get it quickly, I had been trying a select query using "IN" operator in the query and had been getting the error as down. What I do is, i get a array of (long) message ids ...
0
votes
2answers
1k views

Compile-Error in Boolean-Expression in Named-Query (JPA)

In my project I'm using JPA2 and Hibernate within eclipse Indigo. I have an abstract BaseEntity class which provides some fields that are needed for all entities in my project. Therefore this class is ...
0
votes
1answer
170 views

Taking the difference of temporal fields in JPQL

I have an entity Event which has fields startDate and endDate. I'd like to select only those events that have at most x days left to the their endDate. I want to do this in JPQL and with only one ...
1
vote
2answers
1k views

JPQL: Syntax error parsing the query, unexpected token

Maybe I'm not seeing it, but what's wrong with specifying the group? Difficulty querying the database (currently empty): public void persist(Msg message) { LOG.info("\t" + message); ...
0
votes
2answers
333 views

How to get result from JPA query, filtered by custom criteria

Is there opportunity to filter query results by complex custom criteria that appears to be only a java function? I would like this criteria functions take a part between entity creation and placing it ...
1
vote
1answer
609 views

MS SQL Server Full Text search with JPA and EclipseLink

MSSQL 2008 EclipseLink 2.3.0 JPA 2.0 I am trying to make an JPQL query to use a fulltext search function of an MSSQL. as we know that FUNC addictional EclipseLink function doesn't work [1] as it ...
0
votes
2answers
229 views

WHERE parameter equals ANY column (Entity attribute) value

I need to write a generic NamedQuery; such as, find me all the objects where any of the attributes matches the given parameter. select mo from MyObject mo where mo.ANYAttribute = someParameter ...
0
votes
1answer
1k views

JPA Native sql resultlist casting

I've got some problem. I'm working with jpa (eclipselink from glassfish 3.1) and a mysql db. Let suppose I've got a student table with a 'creation' field that is a datetime. Using sql if I want to ...
0
votes
1answer
424 views

How can i inner join a subquery in JPQL

I need a JPQL for the MySQL query Select * from table1 t1 inner join table2 t2 on t1.id = t2.table1.id inner join (Select * from table1 t3 inner join table2 t4 on t3.id = t4.table1.id where t3.name = ...
3
votes
1answer
895 views

When should a person use native queries with JPA 2.0 instead of JPQL or CriteriaBuilder?

I am very confused about when and when not to use native queries in JPA 2.0. I was under the impression that using native queries could cause me to get out of sync with the JPA cache. If I can ...
1
vote
1answer
882 views

Using DISTINCT keyword in JPA on individual columns

I am reading some values from a database that is horribly un-normalized (which I can't control). The call retrieves announcements for university departments, and if a user is in multiple departments ...
1
vote
2answers
354 views

jpa case-insensitive in-clause for a list of string values

I want to know if JPQL is capable of doing a case-insensitive search on a collection of string. Scenario: Table1: Column1 (int) | Column2(string) 1 ABC 2 XYZ I am ...
1
vote
1answer
263 views

Bind specific parameter (one) in JPQL

In database I have partitioning table by column 'status' for better performance. My database administrator ask me about put in query value for that column directly in sql (not bind by parameter). I ...
1
vote
1answer
720 views

Difference in where clause beetwen JPQL and CriteriaBuilder

I have two separate entity class: Job and JobOrgUnitCfg Below I put two pieces of code make this same select on that objects. First query in JPQL: Query jobOrgUnitCfgQuery = ...
2
votes
0answers
316 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 ...
0
votes
1answer
401 views

jpa 2.0: how to do a sql minus of a collection with a table

I am looking for a JPQL or Criteria expression to find a subset of integers(codes) in my collection which are not in the table. Native Query for Oracle DB would be: SELECT column_value FROM ...
0
votes
1answer
226 views

jpql select query with where clause does not differentiate non english characters

i'm using hibernate jpa 3.6.7. i have a table that stores country names and i have a country named "Türkiye". i wrote a query like this: Query query = em.createQuery("SELECT COUNT(c) FROM ...
3
votes
2answers
2k views

JPA concat operator

Is there a JPA concat operator for string concatenation? I know there is a JPA CONCAT function, however its ugly to use for concatenating multiple strings. ...
4
votes
3answers
811 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 ...
3
votes
1answer
987 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; ...
1
vote
1answer
3k views

jpa fetch join query

This is how my domain looks: public class Template implements Serializable { private static final long serialVersionUID = 1L; @OneToOne(cascade=CascadeType.ALL) private FieldConfig ...
2
votes
1answer
234 views

When should I favor JOIN instead of attribute access in singular attributes?

Consider the following Entity: @Entity public class Employee { @Id @GeneratedValue private Long id; private String name; // Assume that Project has a 'name' property ...
0
votes
1answer
498 views

Joining table and subquery in jpa

I have two tables T1 and T2 where t2 is result of subquery to make it clear select * from T1 join (select * from T3 where foo is not null) T2 on T1.key = T2.fk
5
votes
2answers
2k 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? ...

1 2