Tagged Questions
The ejbql tag has no wiki summary.
6
votes
7answers
22k views
Hibernate (JPA) how to do an eager query, loading all child objects
Relating to my earlier question, I want to ensure all the child objects are loaded as I have a multiple threads that may need to access the data (and thus avoid lazy loading exceptions). I understand ...
2
votes
1answer
176 views
JPQL: determine sub class type from super class join?
My question is very similar to this one:
How can I write a Hibernate Criteria query, for a super-class, and check for a certain sub-class?
..., except for one thing:
I'm using a JPQL query instead ...
2
votes
1answer
237 views
Hibernate: Can't use a named parameter for OFFSET and LIMIT?
I'm trying to get the following NamedQuery to work:
@NamedQuery(name="MyEntity.findByUser", query="SELECT m FROM MyEntity m WHERE m.owner = :user OFFSET :offset LIMIT :limit")
The problem is that ...
2
votes
6answers
169 views
Toplink bug. Empty result for valid sql with not empty result
How is it possible?
We are executing EJBQL on Toplink(DB is Oracle) and query.getResultList is empty.
But!
When i switched log level to FINE and received Sql query, that TopLink generates, i tried ...
2
votes
2answers
111 views
EJBQL/MySQL Regexes and IN
I have a list of Regexes and want to return those rows with a field which passes any regex. Is there anyway to something like the following:
SELECT * FROM Foo as f WHERE f.bar IN ("regex1","regex2");
...
2
votes
3answers
547 views
Is this valid EJB-QL?
I have the following construct in EJB-QL several EJB 2.1 finder methods:
SELECT distinct OBJECT(rd) FROM RequestDetail rd, DetailResponse dr
WHERE dr.updateReqResponseParentID is not null
...
2
votes
3answers
921 views
Converting Oracle date arithmetic to work in HSQLDB
I'm trying to spot-test an Oracle backed database with hsqldb and dbunit, but I've run into a snag.
The problem is with the following EJB-QL (simplified a bit):
SELECT o
FROM Offer o
WHERE ...
1
vote
2answers
121 views
Hibernate: Conditional query not evaluated correctly
I'm trying to get the following query to work in Hibernate:
SELECT m FROM MyEntity m WHERE m.owner = :user
AND m.field1 IN (:field1Vals)
AND ...
1
vote
1answer
263 views
EJB-QL in Expression Language using Seam: Finding more than one value
I'm trying to come up with an Expression that will find two values within a column. I'm using JBoss 4.2.2, JSF 1.2, RichFaces 3.3.
In these two single examples:
"personData.status in ...
1
vote
1answer
328 views
LEFT JOIN tables with EJBQL
I am trying to join two EJB's using EJBQL (with an underlying MySQL data source). The two tables in question are
Machine
- Hostname
- ... unrelated fields ...
and
Location
- Code
- Human ...
1
vote
2answers
611 views
EJB-QL question how would I set a list as a parameter like: select o from table where id in (List<Long> listOfIds)
IN EJB-QL I am trying to create a query like this:
SELECT *
FROM table
WHERE id IN ([id1],[id2],[id3],...);
This is a normal query for oracle or mysql but how can I make EJB-QL set parameters ...
1
vote
1answer
142 views
Why isn't this EJBQL query validated by JBoss 5?
I am migrating an existing application from Weblogic server 9 to JBoss 5.
My problem is with a query that has a character condition in the WHERE clause, like this one:
SELECT DISTINCT ...
1
vote
2answers
576 views
case-insensitive search in EJB QL
This looks really simple and I can't believe I haven't found a solution myself. I have a bean named PersonBean, which has a name. Now I want to write a finder method that takes a string and looks for ...
1
vote
1answer
312 views
How to rename the fields of ejbql query in ireport?
I'm using iReport 3.7.3 with ejbql connection. My problem is when I want to get the fields from the query, the ireport sets the name of the fields with "COLUMN_1", "COLUMN_2" even if I use the ...
1
vote
1answer
1k views
EJBQL date comparison
In EJBQL how can compare two date values; suppose
"Select e from Employee e where e.start_date > :start_date"
If I set query parameter with setParameter("start_date", new Date());
An Exception ...
1
vote
2answers
261 views
Could I order in EJBQL by a function which is not mapped to a column in database?
I would like to order a query by a function which uses properties of the class. Something like:
@entity
class A
{
private int id;
private String name;
public int StringLength()
{
return ...
1
vote
2answers
594 views
Is it possible to test a JPA/EJB QL statement with regex?
I'm not an expert on regular expressions so I thought I'd throw this question out. I'm thinking regular expressions can help make my tests more robust (testing generated EJB QL statements for correct ...
1
vote
2answers
554 views
Data structure to hold HQL or EJB QL
We need to produce a fairly complex dynamic query builder for retrieving reports on the fly. We're scratching our heads a little on what sort of data structure would be best.
It's really nothing more ...
0
votes
1answer
41 views
How to set parameters within '' in EJB query
In EJB query, it's recommended to use setParameters() instead of concatenating string parameters in order to avoid SQL injection attack.
My question is: how to set parameters within '' in SQL update ...
0
votes
0answers
47 views
ORDER BY SUM() in EJB-QL causes only 1 Entity to be returned
I have 2 tables:
OFFER
-id
-name
-description
-link
OFFER_STAT
-id
-offer_id
-date
-clicked
OFFER_STAT holds an entry for each date, per OFFER, with the number of clicks on the given date. I'm ...
0
votes
1answer
42 views
HibernateEntityQuery and EJBQL restrictions
I've just inherited some code that uses HibernateEntityQuery and EJBQL restrictions.
There's an "activity" table/entity with various fields, and the existing EJBQL restrictions look like:
private ...
0
votes
0answers
304 views
Passing a EJBQL request to my report as a parameter
I want to pass the ejbql Request to my report as parameter from my code java but many errors occurs
this is my report:
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport ...
0
votes
1answer
98 views
How to load JPA entites via dynamic EJB-QL from standalone cache, without hitting the database
I've got a JPA entity that is loaded via dynamic ejb ql queries that can be configured by the user fairly freely. In comes a new requirement: Users should be allowed to create new entities only iff ...
0
votes
0answers
55 views
Need help with some questions about WSAD - Websphere (Java)
Practicing for an exam in WSAD - Websphere (Java) and there is a question I do not understand how to solve. Based on the following image http://i51.tinypic.com/msdpwo.png you should answer the ...
0
votes
1answer
48 views
is there a way to programatically determine the EJB entity class and id column from the table name?
is there a way to programatically determine the EJB entity class and id column from the table name?
I have the table name, what I want is a way to get the entity class name and the name of the id ...
0
votes
1answer
712 views
How do I use a EJBQL between query with two identical dates?
I have a JPA named query that takes two dates in order to return records with a date column entry between the two dates.
If I enter the same date for both the start and end dates it returns no rows, ...
0
votes
1answer
392 views
What is the correct syntax for an ejbql query that traverses four levels of many to one relationships
I have a simple data model in JPA (hibernate) consisting of many to one and one to one relationships similar to this:
town -> state -> governor -> nation -> continent
where town is many to one to ...
0
votes
1answer
467 views
EJB-QL Query List inside Object
I'm attempting to write what should be a simple (I hope) EJB-QL query.
Here are my objects:
public class Room {
private String name;
private List<RoomConfiguration> configs;
}
...
0
votes
1answer
290 views
Querying record by date (01 may 1916) on Oracle using Java/EJB 2.x
I have an EJB 2.1 entity bean that queries a "date of birth" column in an Oracle table. The column in the database is of type DATE. The query works without problems except for one specific date: 01 ...
0
votes
1answer
2k views
SEAM ENTITYQUERY - Problems with Restriction seam-gem example
My project was originally generated by seam-gen and the action "List" bean is not working as i expected. The restriction array has all the attributes from table and is behaving as if all the parameter ...
0
votes
3answers
4k views
Select nvl(max(c.EmployeeId),0) in JPQL?
I'm using oracle10g database and eclipselink, I need to obtain the last inserted key from the table so i've created this query
javax.persistence.Query q =
...
0
votes
1answer
852 views
How do I select a collection of entities and pass it to a bean as a parameter using EJBQL?
I'm doing some weird reporting from a JPA data store.
I need to select (using EJBQL) a list of objects. These objects contain collection of entities. I have a class that is constructed by:
...
0
votes
0answers
2k views
Problem with “not (a, b) in (select …)” in JPA query using Hibernate EntityManager
Observation: This is a repost of a question I asked at the Hibernate forum but got no response.
I have a simple graph structure like this (in MySQL):
create table Node(
id int not null ...