Tagged Questions
0
votes
2answers
30 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
0answers
43 views
JPA setMaxResults not working - query returns ALL rows
I've been banging my head against a wall for the last 4 hours on this one, trying varying permutations, updating libraries, etc - to no avail.
I am calling my MySQL DB, where a table 'links' has ...
1
vote
3answers
50 views
Multiple select using JPA [duplicate]
I use JPA on my JEE6 application running on Glassfish.
I want to select multiple records from a table. Let's say each record has a column named "serialnumber" And I have a dynamic list of serial ...
0
votes
1answer
50 views
update merge onetomany jpa/hibernate - ConstraintViolationImpl
I am trying to make a simple update of a list in jpa, but it is not working.
I have something like.
@Entity
@Table(name = "user")
@DynamicUpdate
public class User implements Serializable {
...
0
votes
1answer
44 views
Ebean ManyToOne nullable join
I have two models :
@Entity
@Table(name="table_entry")
public class TableEntry extends Model {
@ManyToOne(fetch=FetchType.LAZY)
@JoinColumn(name="clone_id", ...
0
votes
0answers
30 views
Updating id's using subquery to filter ids and limit
I'm running into an issue with JPA and trying to update rows based on a sub query that is used to filter id's and limit that is based on a batch criteria.
This is my following query
String ...
0
votes
1answer
43 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 ...
1
vote
2answers
54 views
JPA - PersistenceUtil.isLoaded - its loaded in which EntityManager?
Question:
PersistenceUtil.isLoaded is evaluated by looking at which EntityManager or is it L2 Cache? After all Entities are loaded by only one of these.
PersistenceUtil.isLoaded method definition ...
0
votes
1answer
60 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
29 views
JPA ManyToOne relations from different entities to the same entity
I have different entities in my model and more than one needs an Address, is there any way to do this without having tables with duplicate information?
E.g. a model that has a User and an EnglishClass ...
0
votes
1answer
39 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
2answers
72 views
JPA, SQlite no such table: SEQUENCE
I have a problem with JPA and SQlite.
I have created an Entity from Table. My generated Entity looks like:
@Entity
@Table(name="sqliteTestTable")
public class Test implements ...
0
votes
1answer
43 views
MySQL/JPA : How create a correclty relation and cascade?
I was very impress with my project, but suddenly I notice that I am doing something very wrong, 'cause, every create, merge, delete I was doing manually, but I should let the JPA take care of that for ...
1
vote
2answers
56 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
0answers
15 views
how to use st_xmax by hibernate/jpa
The following does not work.
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.Predicate;
import javax.persistence.EntityManager;
import ...
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)
...
0
votes
1answer
51 views
MySQL query log equivalent for Microsoft SQL server [duplicate]
MySQL has the option to log are queries executed towards the database.
Microsoft SQL server has the same option, by using the SQL Server Profiler. However, I'm using JPA (Hibernate) as ORM tool and I ...
1
vote
2answers
105 views
How can I get results from a JPA entity ordered by distance?
I am currently writing a mobile application where the user has to pick a location from a list. All the locations are stored in a Postgres database using JPA from a Play app.
What I would like to do ...
8
votes
2answers
159 views
How to select on table and count occurrences some values
I am asking you for a help because I do not know SQL very well.
I need to count occurrences some values from table column to achieve effect like statistics table which will look like at the picture ...
1
vote
2answers
265 views
How to call SQL query with aggregate function in JPA/Hibernate
Is it possible to run such a a query like this below in JPA/Hibernate?
select v.country,
v.site,
SUM(case when s.id = 1 then 1 else 0 end) as Total_SuspectedViolations,
SUM(case when s.id = 2 ...
0
votes
1answer
87 views
JPA Audit/History-Data with existing Database-Triggers
I am adding a JPA application to a complex system of many existing applications (written in MS Access, Delphi, Perl, C#, PHP, etc.). The underlying MS-SQL database uses database triggers to write a ...
0
votes
0answers
38 views
Designing a report database
I'm building a system that checks a large number of documents for missing or otherwise not valid fields. There are about 20 different field types.
I need to create a report that will list all the ...
-1
votes
1answer
74 views
4
votes
1answer
112 views
CriteriaQuery join on string value
I have a table with a string value for the barcode of the entity it points to. Unfortunately, it is not a foreign key, its just a string, so no mapping exists. This makes join operations difficult. I ...
1
vote
1answer
63 views
How to select the best match in a JPA query
The following query will return the first item (any old item really) where the like matches.
TypeQuery<Company> query = em.createQuery(
"select c from Company c where c.name like ?1", ...
13
votes
2answers
257 views
Hibernate faster EntityManagerFactory creation
In my desktop application new databases get opened quite often. I use Hibernate/JPA as an ORM.
The problem is, creating the EntityManagerFactory is quite slow, taking about 5-6 Seconds on a fast ...
0
votes
1answer
35 views
java.lang.IllegalArgumentException with toplink and JPA
I've a problem with JPA, whenever execute this query
@NamedQuery(name = "Usuario.getUsuarioIntento", query = "SELECT u.intentos_id FROM Usuario u WHERE u.username = :username and u.borrado = 0")
...
0
votes
1answer
64 views
search engine with createQuery does not work
I just want to code a simple search engine using JPA.
Here's example of native sql request that works with PHP :
"SELECT mobiles.brand, argus_waitings_mobiles_prices.mobile, ...
2
votes
1answer
142 views
JPA Query for toggling a boolean in a UPDATE
SQL version works okay and I can toggle the boolean called bar ...
mysql> update Foo set bar = ! bar WHERE id IN (1, 7, 13);
Query OK, 3 rows affected (0.02 sec)
Is there a easy JPA Query ...
1
vote
3answers
57 views
Select latest entries for a list of IDs
I've got a following table:
create table MyData
(
id bigserial primary key,
registered timestamp not null,
deviceID int not null,
someData int,
-- a bunch of other stuff
);
I also have ...
7
votes
3answers
183 views
Store an integer for bitwise compare in a permission model using JPA 2
I am using a permission model where I have a table user_permissions. This table will hold one or more columns with a certain bigint. I will use the bits of each decimal number to compare with certain ...
0
votes
1answer
38 views
Persisting an object using JPA with predetermined ID
I need to persist() an object with an id, that I can specify. However I can't annotate the base class with a different @GeneratedValue. Can you assign a value generator just for a single persist? I ...
0
votes
2answers
100 views
JPA query: what is a proper way to select by a large set of possible values?
What I have is a large (like hundreds of thousands) list of IDs. I want to get some values from the objects with this IDs with a JPA query.
Option 1 - using IN clause
List<Long> ids = /* ... ...
0
votes
1answer
141 views
JPA CriteriaBuilder Joins with extra ON clause parameters (predicate)
How to join with extra ON clause parameters?
I have an SQL:
select * from Address address left outer join AddressLine line
on line.id = address.lineId AND line.type = 'MA'
where ...
0
votes
1answer
47 views
How to write this SQL query in JPQL
I'm looking to convert the following SQL into JPQL:
SELECT *
FROM rooms
WHERE NOT EXISTS
(
SELECT *
FROM booking, booking_has_rooms
WHERE ...
0
votes
2answers
237 views
Hibernate createSQLQuery and Toad SQL query return different results - parameter problems?
I'm a newbie at Hibernate so excuse me if some of this is glaringly obvious but it's been a very, very long day. I am trying to create and execute a simple query in Hibernate and Toad/Oracle.
The ...
1
vote
3answers
94 views
Friend Relationships with JPA
I'm having a hard time creating the optimal JPA representation of a relationship. Seems like there is a bunch of ways to do it and I'm not sure which is most optimal. Without JPA I might represent the ...
1
vote
1answer
62 views
java jpa : list and sublist
I have a java object that I have persisted using JPA. This object has a member 'friendsList' that is a list of strings. I have used the @CollectionOfElements hibernate annotation on this object. The ...
1
vote
1answer
79 views
Hibernate One-To-Many join on two columns
I have a SQL query that closely resembles the following:
select *
from parent p inner join child c on p.id = c.parent_id and c.type = 'PARENT_TYPE';
I am trying to define my entity mappings with a ...
0
votes
0answers
33 views
Java-EE Entity persisting
Currently i'm developing a round based game.
now im encountering a problem:
ive got 2 Objects: Flower and FlowerDynamic.
Some (more or less) static attributes are getting assinged to the flower ...
0
votes
1answer
94 views
OpenJPA Insert not using foreign key
I'm trying to create a little project around EJB / JPA linked to a Mysql database.
I got two tables FctData and RefKpiDataQuery linked by a foreign key.
FctData :
public class FctData implements ...
1
vote
4answers
88 views
Get user with highest number of records
I have a table "Records" in my database and a column "username" where I have stored the name of the user that has the record. I want to get the user with the highest number of records. The only idea ...
0
votes
1answer
89 views
Java Persistence and entity classes
I have two entity classes - A and B. The template of the code is as follows:
class A extends class B {
// ...
}
@Entity
@Table("OPERATION")
@DiscriminatorValue()
@Access()
class B {
// ...
...
-1
votes
2answers
81 views
ORM one to many types
Maybe isn't correct the title, please suggest a better one!
What I would like to have:
table1:
field1
field2
.....
userID
The user id should be one of the 5 tables: User, Person, Sales, Managers, ...
0
votes
1answer
65 views
JPA @ManyToOne fields are empty
I have spent hours looking how to solve this. When I try to get parent from a child all but it's id fields are empty. It just makes no sense. I am using PlayFramework 2.0.4 if that might indicate ...
-1
votes
1answer
91 views
Criteria query for fetching the data after particular date and time
I am using the criteria query as follows:I want to fetch the reservations after the time and date I have passed.but now i am getting the reservation before the time which i have passed for the same ...
2
votes
1answer
973 views
How can I execute a native SQL script in JPA/Hibernate?
I have a SQL script with database dump. How can I execute it using Hibernate's EntityManager?
I tried it this way:
EntityManager manager = getEntityManager();
Query q = ...
0
votes
1answer
58 views
Finding items with a set containing all elements of a given set with jpql
I want to find the items that contain all the given tags in their tags set.
Here are the simplified classes:
@Entity
class Item {
@ManyToMany
var tags: java.util.Set[Tag] = new ...
0
votes
1answer
74 views
Eclipselink only gives syntaxError on PARTITION when running tests
I'm having trouble with a native SQL query that works fine when I run my code normally, but gives me:
[EL Warning]: 2013-01-15 10:24:04.462--UnitOfWork(2230747)--
Exception [EclipseLink-4002] ...
0
votes
1answer
220 views
Compare Date from the database with current date using jpa
I am using JPA 1 with hibernate as provider. I want to compare date of the entity with current date(regardless of time) and I am saving that field as timestamp(as i need it).
I was getting the correct ...




