The Criteria interface of Hibernate ORM , represents a query against a particular persistent class. The interface provides access to the powerful mechanism of hibernate criteria API, that allows the programmatic creation of queries against the DB.
0
votes
1answer
13 views
Using hibernate criteria in one to many mapping (Search header table with line table column as one of search criteria)
I have two classes InvoiceHeader and InvoiceLine with a one to many (One InvoiceHeader maps to multiple InvoiceLine) mapping between them.
class InvoiceHeader
{
private int id;
private String ...
0
votes
0answers
31 views
hibernate - How to get select within a select using Criteria
I have the following mysql statement SELECT * FROM (SELECT * FROM NINJA ORDER BY NAME LIMIT 0,5) AS TABLE ORDER BY NAME DESC. I don't know how am I gonna convert it into hibernate criteria. The ...
0
votes
1answer
36 views
SQL 'case when' in hibernate Criteria
How can I tranform the following query to a hibernate Criteria?
select pr_name, count(*) from (select (case when serv.type=xyz then serv.nameA else serv.nameB end) as pr_name from db.serv serv where ...
0
votes
1answer
63 views
Joining multiple table using hibernate criteria
I am trying to join multiple table to join using criteria but getting some problem , please help me:
I have a sql query like :
SELECT a.type, a.time, c.code AS exchangeCode
FROM CutOffTime AS a ...
0
votes
0answers
10 views
Create criteria query satisfing multiple column conditions
In my application I have entity class Activity having properties:
Set<User> activityManagers and Set<User> users both are in many-to-many relationship with other property of entity class ...
0
votes
2answers
60 views
Is there a cleaner, more Grailsy way to write this query?
I have a couple scenarios where I want to retrieve a single Advertiser and eager fetch most of its object graph. I definitely don't want to do this by default, so I've been searching for the right way ...
0
votes
2answers
60 views
Hibernate Criteria query using AND,OR operator
In my application I have two entity class User,Activity.
Activity class is :
public class Activity{
private Set<User> users;
private Set<User> activityManagers;
}
and class User is ...
0
votes
0answers
53 views
hibernate criteria search multiple values on the same column with and
I am search for an example of hibernate conjuntion and multiple criterias on the same column.
Here the example in sql:
String[] tags = {"Java", "Hibernate"};
String hql = "select a from Article a " ...
0
votes
0answers
7 views
Populate OneToMany relationship in Criteria
I have a entity AuditLog which holds a One-to-Many relationship to AuditParameter:
@Entity
public class AuditLog implements IAuditLog, Serializable {
// ...
@OneToMany(targetEntity = ...
0
votes
1answer
116 views
How to call store procedure when it has out parameter in oracle?
I have one store procedure which has 3 input parameters and one out parameter named
'TEST(name1 IN VARCHAR2, name2 IN VARCHAR2, name3 IN VARCHAR2, result OUT VARCHAR2)'
How can i call this stored ...
0
votes
1answer
74 views
Grails criteria: how to count results from a grouped subquery?
Ok guys I'm finally stuck with GORM Criteria API implementation facing this problem:
I've got an Oracle view mapped like this:
class MyView implements Serializable {
Long idA
Long idB
...
2
votes
1answer
53 views
ClassCastException (String to Long) when running a subquery with Criteria
First my setups :
mysql-connector-java 5.1.24
hibernate-core 4.1.10.Final
I've got an ClassCastException when running this criteria query :
Criteria sellableItemsCriteria = ...
0
votes
1answer
30 views
Hibernate Criterai API. JOINs
It is possible to construct Criteria query for this SQL:
SELECT P.This FROM Position P INNER JOIN PersonOnPosition PP ON PP.Tail = P.This WHERE PP.Tail IS NOT NULL
I want to port Hibernate ...
0
votes
2answers
45 views
How to write this SQL in HQL or using Criteria?
Is there any way to rewrite equivalent of below SQL in Hbernate HQL or Using Hibernate Criteria (or DetachedCriteria)? It should return single record from database.
And Which one is advisable using ...
0
votes
0answers
34 views
Collection not aware of FetchMode
I have the following domain relationships:
A hasMany = [bs: B]
B belongsTo = [a:A, c:C]
C hasMany = [bs: B]
When I do the following query inside a Thread.start {} all is well (I can access the ...
0
votes
1answer
39 views
How to prevent joining tables in eager relationships when using criteria
I have three classes say A, B and C as below:
Class A has a OneToOne relation with B:
Class A {
@OneToOne
B b;
}
And B has an eager relation with C.
Class B {
...
0
votes
1answer
158 views
hibernate criteria: select object from one table using another one
First of all sorry if my question is't very well formulated.
I have simple object which is mapped to corresponding table:
@Entity
@Table(name = "USERS")
public class User{
@Id
@Column(name ...
0
votes
0answers
23 views
Hibernate criteria case insensitive for Restrictions.in of 3.5.6-Final version
How to ignore case using 'Restrictions.in()' in version 3.5.6-Final of Hibernate. Or do we need to override any criteria methods, if so how this can be achieved.
0
votes
1answer
66 views
How to apply DISTINCT for Child Object using hibernate criteria
I have object called 'MasterObj'. In that 'MasterObj', I have a child object called 'EmployeeObj'(foreign Key)
The relation ship between 'MasterObj' and 'EmployeeObj' is one to Many.
And my ...
0
votes
0answers
20 views
Is Restrictions.eqOrIsNull() case insensitive
Is
Restrictions.eqOrIsNull("STATUS", "ERR")
criteria in hibernate case insensitive.I want to make an case insensitive eqOrIsNull search and
equalsIngnoreCase()
is not found on this ...
0
votes
1answer
68 views
Hibernate ignore case in property name
I have the following:
@Entity
public class Person {
@Id
private long id;
@Column
private String firstName;
// getters and setters
}
I want the following to work:
Criteria ...
0
votes
0answers
33 views
unable to create grails criteria
I have an entity called EasyAnnouncement as following:
class EasyAnnouncement {
String name
Event event // can be null
}
and the entity Event looks like:
class Event {
LocalTime ...
3
votes
2answers
205 views
Please provide example for an If statement in hibernate criteria
How do you write criteria on if condition using hibernate criteria.
My query that needs to be transformed is
SELECT date, product, IF(type = 'msrp', amount, 0) price,
IF(type != 'msrp', ...
0
votes
0answers
41 views
Criteria Query-Upgrading Grails from 1.3 to 2.1
I'm upgrading an application to Grails 2.1 from 1.3. During the update, Hibernate criteria queries changed how joins are handled by default-from LEFT OUTER to INNER. So, I'm trying to convert a ...
2
votes
1answer
91 views
Hibernate Criteria - Returning same result for 2 different Criterias
I have following 2 criterias.
1. Criteria criteria = session.createCriteria(Student.class)
.createAlias("results", "result", Criteria.LEFT_JOIN)
...
0
votes
0answers
20 views
criteria to search map association with **key is entity and value is embeddable**
I search name of map key--Position ( Position is entity ) like this (hibernate 3.3 )
list = s.createCriteria(Ad.class, "ad").createAlias("ad.positionInfos", "pf")
...
0
votes
0answers
60 views
How to subtract the results of sub queries with hibernate criteria
Does anybody know how to subtract the results of two sub queries using Hibernate criteria?
So a query that looks something like this:
..........
where
1 = (select count(*) from tableA where incoming ...
0
votes
1answer
210 views
Hibernate Criteria with Projections.groupProperty cannot return full hibernate object (ClassCastException)
I am relatively new to Hibernate, and I have a problem when adding a "distinct" restriction on my hibernate class.
@Entity
public class TaggedOffer {
private Long tagged_offers_id;
private ...
0
votes
0answers
100 views
Spring Data Transformers.aliasToBean(AgentRecordDTO.class)
I want to use Hibernate Transformation with Spring Data.
I have an entity AgentRecord with attributes as
@Entity
public class AgentRecord extends AbstractEntity<Long> {
@ManyToOne
...
0
votes
1answer
118 views
Conflict in the results between Hibernate Criteria API and Hibernate Query Language
I am new to Hibernate criteria, the relation between Tutor and Student is OneToMany (i.e. one Tutor has many Student), I tried following hibernate query to retrieve all students whose tutor name is ...
0
votes
1answer
104 views
Hibernate detachedcriteria for 2 joined-subclasses with the same property
I have the following mapping:
<class name="Animal" table="Animal" abstract="true">
<id name="Id" column="Id" type="Guid">
<generator class="guid.comb"/>
</id>
...
1
vote
1answer
41 views
Converting Object to Class object
in my Spring MVC project i m using Hibernate, by using Criteria API i am applying Group BY and Order BY clause. Query get executed on DB successfully and it brings result also but its an array of ...
0
votes
0answers
47 views
Hibernate criteria for messaging system
For my application (sending messages from one user to another) I use database schema like here. And I would be very appreciative if someone help me to write hibernate criteria query for selecting a ...
0
votes
2answers
44 views
Criteria API. Sort by latest child
Im having huge difficulties to accomplish something that i would think should be pretty easy.
Basicly I have an OrderBean and an OrderInsertBean. They are both mapped entities to a mySQL table. An ...
0
votes
0answers
47 views
converting query with count distinct to criteria
select count ( distinct reason ) from table where var1 = '..."
I want to convert the following query into criteria, the best I came up with after several hours of googling was this.
Criteria ...
0
votes
1answer
159 views
hibernate criteria for multiple select on same table
I have a case where I need to find out the difference between the same field of the table for different versions.
For example:
I have a table called BankAccount with fields like
acount_no
,
...
0
votes
1answer
63 views
Grails: Perform a second search on the results of a criteria.list
I have the following model:
class Post {
int id;
String comment;
static belongsTo = [
category_id:Category,
author_id:Author
];
}
I wish to create the following Query: Find the ...
1
vote
1answer
230 views
Using of ORACLE rowId in Hibernate Criteria
I have ORACLE DB and 2 tables.
I need select rows from table1 inner join table2 and order by ORACLE RowID column.
To select I use criteria query.
To add order by statement I use
...
0
votes
1answer
107 views
Criteria generates SQL Query correctly but it does not return anything
A criteria is used to retrieve data from database. It generates SQL Query perfectly, which is tested on mySql separately and the records are loaded correctly;However, when using Criterial.list() it ...
0
votes
0answers
426 views
how to use subquery with projection using criteria in hibernate
I have written a query in sql which is like...
SELECT c.clientfirstname,
c.clientlastname,
c.clientage,
c.status,
Sum(i.annualamount) AS amount,
p.planname,
...
0
votes
0answers
58 views
How to code variable number of 'Or' clauses with Criteria?
I have the following criteria query as :
Criteria criteria = session.createCriteria(Parts.class);
Iterator<String> iterator = searchList.iterator();
Disjunction or = ...
1
vote
0answers
57 views
Using Criteria for sub-queries
I have two tables in my Database, Tuser and TCompany,
where
Tuser : id | name | email
Tcompany : id | companyName | userId
where userId is foregn key of Tuser table.
I have written a ...
0
votes
0answers
35 views
How to restrict a Hibernate query by a Set property
I have a Hibernate entity representing an Order. Orders can apply to multiple Zones. Thus, I have in my mapping file the following:
<set name="zones" table="ORDER_ZONES">
<key ...
0
votes
0answers
124 views
Hibernate Criteria Query for many to many Enum
I have a class Comment:
@Entity
@Table(name = Constants.COMMENTS_TABLE)
@Audited
public class Comment {
@Column(name = "comment", nullable = false)
private String comment;
...
2
votes
1answer
48 views
How to order a Criteria (Hibernate) by an external query?
Let's say I have
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.like("name", "F%")
.addOrder( Order.asc("name") )
.list();
Lets presume the cat class has 2 more properties, ...
0
votes
1answer
166 views
HTTP Status 500 - createCriteria is not valid without active transaction
Good Evening, please could you help me in resolving these exception i'm using hibernate 3.5 to generate DAO and entities from database
hibernate.cfg.xml
<hibernate-configuration>
...
3
votes
1answer
179 views
Does Hibernate Criteria Api completely protect from SQL Injection
I am working with Hibernate to protect my website from SQL Injection.
I heard that Hibernate Criteria API is more powerful than HQL.
Does Hibernate Criteria Api completely protect from SQL Injection?
...
0
votes
1answer
141 views
Grails: Use results of Criteria + projections as a filter on the original table
I have the following table/model:
class Post {
int id;
String comment;
static belongsTo = [category_id:Category];
}
I wish to create a query that can filter out the last Post (highest id) per ...
0
votes
2answers
78 views
How should we query multiple one-to-many relations
Domain
I'm trying to optimize my queries and need some advise. Is this the preferred way of querying one-to-many relations?
My domains looks like this:
MeasureSet
/// <summary>
///
...
1
vote
2answers
81 views
Hibernate criterion to restrict property to set of possibilities including null
I'm still trying to understand how the Restrictions.in("propName", ...) operator of the Hibernate Criteria object works.
Let's say I have an entity IceCream with nullable property flavour and I want ...







