EJB QL is a Query Language provided for navigation across a network of enterprise beans and dependent objects defined by means of container managed persistence.
1
vote
1answer
43 views
Passing two parameters to a named query
I have the following namedquery over my entity "Intervention ":
@NamedQuery(name = "Intervention.findNextMission", query = " SELECT i FROM Intervention i WHERE i.heureDebut> ...
0
votes
2answers
84 views
EJBQL - How to sort query results by a field in LEFT JOIN
I have the following classes (simplified for clarity):
Class Top {
InternationalStringType name;
}
Class InternationalStringType {
List<LocalizedStringType> localizedString;
}
Class ...
0
votes
1answer
76 views
how to add day to date in ejbql
I am trying to achieve dateadd in my EJB query. I tried something like this but it doesn't work:
select t.date + 1 from Table t
Once I tried executing that code, this exception comes out:
...
0
votes
0answers
56 views
Queries in EJB QL Collection Member Comparison
I need to write the following sql query, in EJBQL.
SELECT * FROM teacher t left join student_class sc on t.id_teacher = p.id_student_class where t.login = 01325 and sc.id_student_class = 3;
In the ...
0
votes
1answer
113 views
How to convert this sql to EJB QL
The sql query is:
SELECT to_char(DE.DELIVERYID) FROM DELIVERIES DE;
DELIVERYID in oracle is a number and deliveryid in JPA is a Long.
any suggestion?
0
votes
1answer
67 views
How do i do a like statement in ejb-ql? [duplicate]
Possible Duplicate:
Parameter in like clause JPQL
I got this code from an example, how do i do a search with ebj ql?
SELECT OBJECT(p)
FROM Person p
WHERE (p.name LIKE ?1)
How do i ...
1
vote
1answer
189 views
Selecting random rows from database with ejb ql
I'm developing a web application for advertising real estates. On the search page i'd like to show some random advertisements, but so far I've had no success with selecting random records from the ...
1
vote
1answer
190 views
Ejb Finder(ejb-ql) Transaction TimesOut
We have been facing an issue, where a simple ejb-ql query runs out of transaction time, if same(WL generated SQL version of ejb-ql) is run from SQL command prompt, it takes very less time than the ...
1
vote
1answer
93 views
Hibernate 3.2.1 and EJBQL query within query
I'm trying to make sure the following is supported with the EJBQL capabilities in hibernate 3.2.1, but my google-fu has failed me.
All I found was that nested queries aren't supported in EJB 2.x
Can ...
0
votes
1answer
164 views
How to delete records with condition in ejbql?
I have the following data in my database table
1 myname@email.com 2323
2 myname@email.com 3432
3 myname2@gmail.com 4433
I want to remove all records in table where email == myname@email.com
...
1
vote
0answers
115 views
Error executing Seam EJBQL - “java.lang.IllegalStateException: invalid select clause for query”
I'm trying to run a ejbql in my application but it's failing with the following error:
java.lang.IllegalStateException: invalid select clause for query.
This is the query:
public void ...
1
vote
3answers
462 views
How can I cast a Integer to a String in EJBQL
I got a Entity with a Integer
@Entity(name=customer)
public Customer {
...
@Column
private int number;
...
//getter,setter
}
Now I want to cast this Integer in a query to ...
0
votes
1answer
155 views
Jpa ejbql query by list property
I have objects:
PersenInfo : (long id,String name, String lastName,String email)
AnsMsg : (long id,PersenInfo fromPersoninfo,String theMsg)
Person : (PersonInfo personInfo, List<AnsMsg> msgs)
...
1
vote
2answers
198 views
EJB QL Syntax error
In my app, I have the following 2 entities:
@Entity
@Inheritance(strategy=InheritanceType.JOINED)
public class Commentable implements Serializable {
@Id
@GeneratedValue(strategy = ...
0
votes
2answers
150 views
EJBQL - Find all rows that have more than 'x' relationships
I know there must be a simple way to do this, but it's not coming to me at the moment. I've got a simple entity like (irrelevant parts removed for brevity):
@Entity
@Table(name = "reviews")
public ...
0
votes
1answer
100 views
Merge EJBQL query with CriteriaBuilder object
Is there a simple way to merge a existing ejbql query with a existing CriteriaBuilder object?
I have on the one side a jasper report with ejbql query
and on another side are applications function ...
1
vote
1answer
177 views
How to select the sum of multiple count() selections in JPQL
What's the equivalent JQPL statement of the following SQL statement:
SELECT (SELECT COUNT(*) FROM foo) + (SELECT COUNT(*) FROM bar)
0
votes
1answer
140 views
Can EJBQL Named Paremeters be Repeated in a Query?
Just a quick one. If I'm using an EJBQL query with named parameters, can I use the same parameter name twice in a single query to avoid having to set the value twice when I actually want to run the ...
0
votes
1answer
236 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
1answer
211 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 ...
1
vote
2answers
333 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 ...
2
votes
1answer
643 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 ...
6
votes
1answer
2k 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 ...
0
votes
0answers
543 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
204 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 ...
1
vote
1answer
555 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
1k 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 ...
2
votes
6answers
249 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
194 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");
...
0
votes
1answer
60 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 ...
1
vote
2answers
2k 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
207 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
1k 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
417 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 ...
2
votes
3answers
909 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
...
1
vote
1answer
1k 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, ...
1
vote
1answer
2k 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 ...
2
votes
3answers
1k 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 ...
0
votes
1answer
579 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 ...
1
vote
2answers
381 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 ...
0
votes
1answer
589 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
393 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 ...
1
vote
2answers
683 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
675 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
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
4answers
6k 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
2answers
938 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:
...
9
votes
7answers
36k 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 ...