Tagged Questions
HQL, acronym for "Hibernate Query Language", is a query language used by Hibernate and NHibernate
76
votes
11answers
42k views
Hibernate: Criteria vs. HQL
What are the pros and cons of using Criteria or HQL? The Criteria API is a nice object-oriented way to express queries in Hibernate, but sometimes Criteria Queries are more difficult to ...
26
votes
8answers
23k views
How do you do a limit query in HQL
In Hibernate 3, is there a way to do the equivalent of the following MySql limit in HQL.
select * from a_table order by a_table_column desc limit 0, 20;
I don't want to use setMaxResults if ...
17
votes
3answers
28k views
Hibernate HQL Query : How to set a Collection as a named parameter of a Query?
Given the following HQL Query:
FROM
Foo
WHERE
Id = :id AND
Bar IN (:barList)
I set :id using the Query object's setInteger() method.
I would like to set :barList using a List of ...
16
votes
9answers
7k views
Is there a more efficient way of making pagination in Hibernate than executing select and count queries?
Usually pagination queries look like this. Is there a better way instead of making two almost equal methods, one of which executing "select *..." and the other one "count *..."?
public ...
15
votes
4answers
34k views
How do you create a Distinct query in HQL
Is there a way to create a Distinct query in HQL. Either by using the "distinct" keyword or some other method. I am not sure if distinct is a valid keywork for HQL, but I am looking for the HQL ...
14
votes
2answers
7k views
NHibernate HQL's Equivalent to T-SQL's TOP Keyword
What is NHibernate HQL's Equivalent to T-SQL's TOP Keyword?
Also what is the non-HQL way for saying give me the first 15 of a class?
12
votes
1answer
6k views
Group by month with criteria in Hibernate
I'm trying to get a report using Criteria and ProjectionList, and I'm pretty new using this through hibernate.
So I have this model:
private Long _userId;
private Category _category;
private ...
12
votes
4answers
12k views
Hibernate criteria: Joining table without a mapped association
I'd like to use Hibernate's criteria api to formulate a particular query that joins two entities. Let's say I have two entities, Pet and Owner with a owner having many pets, but crucially that ...
11
votes
4answers
15k views
Performing Date/Time Math In HQL?
I'm looking how to perform date/time math within an HQL query. Specifically, how do I add or subtract (x) amount of time from the result of the current_timestamp() function? Or do I have to drop into ...
10
votes
1answer
377 views
NHibernate Linq Query is 3x slower than HQL
I have a simple test that runs a query 5000 times. The linq version of the query takes over 3 times the HQL and the cached Linq version is significantly slower than the cached version of HQL
HQL:
...
10
votes
2answers
7k views
Proper way of writing a HQL in ( … ) query
Assuming that I want to write the following HQL query:
FROM Cat c WHERE c.id IN (1,2,3)
what is the proper way of writing this as a parametrized query, e.g.
FROM Cat c WHERE c.id IN (?)
10
votes
2answers
3k views
Does between in HQL compare strictly or not?
if I write in HQL
A between 5 and 10
is that equivalent to
A >= 5 and A <= 10
or
A > 5 and A < 10
or some other of the 4 combinations?
9
votes
4answers
7k views
Using hibernate/hql to truncate a table?
What is the recommended way to truncate a table using hibernate/hql?
I've tried this:
Query query = session.createQuery("truncate table MyTable");
query.executeUpdate();
But it didn't work ...
9
votes
6answers
6k views
How to test HQL queries?
I'm searching for a fast (really fast) way to test changes to hibernate queries. I have a huge application with thousands of different HQL queries (in XML files) and 100+ mapped classes and i dont ...
9
votes
4answers
12k views
Using HQL to query on a date while ignoring the time on Oracle
I have a table (in Oracle 9 and up) where I need to find all entries for a given day using Hibernate. The entries have timestamps (with data type 'date'). Some of the entries have a time, others only ...
9
votes
4answers
3k views
Is there any easy way to convert Criteria to HQL?
I have posted a question few days ago about Querying on collections with the Criteria API and after all the answers i see that the thing that i am trying is not possible with the Criteria, there is a ...
7
votes
3answers
635 views
How to escape reserved words in Hibernate's HQL
I use the following query to get a java.util.Map with indexes id, text and object:
Query q = mySession.createQuery(
"SELECT u.id AS id, u.name AS text, u AS object FROM User u")
...
7
votes
1answer
5k views
Join without association in HQL
Lets say I have two tables(A, B) like:
A {id, a, c}
B {id, b, c}
I have also their entities. I want to write an HQL so that the result set will be like (where A.c = B.c):
(a1, b1, c1)
(a2, b2, c2)
...
6
votes
1answer
138 views
Annotation @Basic to transient variables
I am having a POJO class which consists of:
- persistent properties,
- transient properties.
While writing HQL I considered both: persistent and transient properties.
I.e. HQL like select ...
6
votes
2answers
5k views
“where exists” in Hibernate HQL
How can I write a "not exists" query in HQL? I am trying to get an HQL not exists query which returns the same results as this Oracle SQL query:
select *
from SCHOOL a
where not exists (select 1
from ...
6
votes
3answers
1k views
Hibernate Second-Level Query Cache not working Eager Fetching
In NHibernate Profiler I observed that when I use eager fetching on an association, using "left join fetch" in an HQL Query or .SetFetchMode() in a Criteria Query the query no longer gets cached in ...
6
votes
4answers
2k views
NHibernate How do I query against an IList<string> property?
I am trying to query against an IList<string> property on one of my domain classes using NHibernate. Here is a simple example to demonstrate:
public class Demo
{
public Demo()
{
...
6
votes
3answers
13k views
How to perform date operations in hibernate HQL
I want to perform data time operations using hibernate hql.
I want to add and subtract two dates as well as I want to subtract 1 year or 1 month from a particular date.
How is this possible using ...
6
votes
6answers
15k views
Using a CASE statement in HQL select
Is there any way to do the following in HQL:
SELECT
case when flag = true then SUM(col1) else SUM(col2)
FROM
myTable
5
votes
1answer
139 views
Nhibernate and MVC3 Books
Are there any books that anybody would recommend to learn NHibernate and ASP.NET MVC v3?
I know that there are a lot of good tutorials online (feel free to recommend any), but I also like to learn ...
5
votes
2answers
858 views
why does hibernate hql distinct cause an sql distinct on left join?
I've got this test HQL:
select distinct o from Order o left join fetch o.lineItems
and it does generate an SQL distinct without an obvious reason:
select distinct order0_.id as id61_0_, ...
5
votes
3answers
1k views
Hibernate: how to use CONCAT and GROUP_CONCAT
How can I use CONCAT() and GROUP_CONCAT() in HQL queries?
5
votes
3answers
617 views
Handle SQL injection in HQL order by clause
is there a simple way to handle SQL injection in Hibernate HQL order by clause. Named params obviously doesn't work for it.
EDIT:
Feel free to post your way of handling this problem. I want to see ...
5
votes
4answers
4k views
How to map a composite key with Hibernate?
In this code how to generate a Java class for composite key (how to composite key in hibernate):
create table Time (
levelStation int(15) not null,
src varchar(100) not null,
...
5
votes
1answer
600 views
HQL query over sub-classes
I have the following entities defined in my Entity Model:
public class MyContainer
{
public virtual ICollection<Base> Subs { get; set; }
}
public abstract class Base
{
public virtual ...
5
votes
3answers
4k views
Hibernate and Unexpected end of Subtree exception
I'm a newbie to Hibernate, so please bear with me if this is obvious or something.
I have an Item POJO which contains a Set<String> consisting of labels. The labels are contained on another ...
5
votes
3answers
2k views
Hibernate queries slow down drastically after an entity is loaded in the session
I'm using Hibernate EntityManager, and am experiencing a weird slowdown in my Hibernate queries. Take a look at this code:
public void testQuerySpeed() {
for(int i = 0; i < 1000; i++) {
...
5
votes
2answers
2k views
Error: Cannot convert value '0000-00-00 00:00:00' from column 13 to TIMESTAMP
the field definition
/** Date. */
@Column(columnDefinition = "datetime")
private Date date;
setter
public void setDate(final Date date) {
DateFormat dfmt = new ...
5
votes
1answer
11k views
What's wrong with this HQL? “No data type for node”
session.createQuery("Select attribute from GoodsSection tgs " +
"join gs.ascendants ags join ags.attributes attribute " +
"where attribute.outerId = :outerId and tgs = :section ")
...
5
votes
1answer
8k views
How to simulate NVL in HQL
I tried this:
from Table where (:par1 is null or col1 = :par1)
but it happens that
from Table where :par1 is null
always returns all the rows of the table, even if the :par1 is not null.
while
...
4
votes
1answer
34 views
Converting HQL 'in' restriction to Criteria
I have a query like this:
Query query = session.createQuery("from table1 c where c.colummewhatever =:value and (select p.colummewhatever from table2 p where c.fkidcolumme=p.idcolumme) in ...
4
votes
1answer
375 views
Multiple Table Join HQL (ASP.NET MVC 2 with Fluent nHibernate)
I have a web application written in asp.net mvc with fluent nhibernate.
I have 4 tables in hierarchy. Which
Vote -> Post -> Category -> Company
I try to build a query which will list all ...
4
votes
1answer
386 views
Pagination with total row count in NHibernate
I am trying to paginate a simple query using HQL, and retrieve the total row count as part of the same query.
My query is simple enough...
var members = UnitOfWork.CurrentSession.CreateQuery(@"
...
4
votes
2answers
265 views
How can someone give the HQL / SQL a better OO approach?
I work with Hibernate and particulary like the Criteria api for the way to compose with request predicates, but in some cases it's not possible to use it so i have to do HQL / SQL.
What i don't like ...
4
votes
1answer
304 views
hibernate inner select in from clause
I'd like to know if it's possible to specify a select clause in a from clause something like
select count(*) as Y, this_.NAME as A, sel2.C
from TABLE1 this_,
(select count(*) as C from
...
4
votes
1answer
740 views
How to convert HQL with Group By to QueryOver?
I have a HQL query:
select max(l.Num) from SomeTable l group by l.Type, l.Iteration
How can I translate/convert it to QueryOver?
Following one:
var grouped = session.QueryOver<SomeTable>()
...
4
votes
1answer
305 views
HQL query minus some specific fields
It is possible with a HQL query to retrieve every fields EXCEPT one.
Something like :
session.get(entityClass, id).withoutThisField(fieldNotDesired)
Example : I have a class Picture(int id, String ...
4
votes
1answer
325 views
Bitwise AND with NHibernate and Oracle
I am using Fluent NHibernate 1.0RC (for NHibernate 2.1.4000) together with Linq 2 NHibernate, and I want to execute a query with a bitwise and operation. I first tried using Linq like this, but that ...
4
votes
2answers
955 views
nhibernate delete multiple records by list of id's with HQL statement
I want to delete multiple records of a certain entity where the id of the entity is in the list of ids I have. I am trying to perform this action in C# with NHibernate.
What I have is a list of Ids.
...
4
votes
1answer
1k views
Prevention against SQL Injection in Hibernate
I have used hibernate to interact with my database, now i wanted to make my database layer secure against SQL Injection, so i did some research i ofund out that my queries should be parameterized, ...
4
votes
1answer
107 views
Can a NHibernate join be constrained from two separate entities?
I need to build an HQL query that uses the same entity twice, but with different constaints coming from previous entities.
For example:
select count(distinct a.id),
count(disintct b.id),
...
4
votes
4answers
890 views
Can I select null as a column value in HQL query?
I need a list with three columns. column 1st and 3rd having values while 2nd as null.
Can I do it through HQL query?
I need something like this:
select id, null, name from MyClass
Where MyClass ...
4
votes
1answer
440 views
Is it possible to override Hibernate's 'like' operator in HQL?
I'm wondering if the following is feasible in Hibernate ; when writing an HQL query, you can say things like
select foo from Foo where foo.barString like "%baz%"
This works assuming that class Foo ...
4
votes
1answer
2k views
How to escape wildcard characters in “like” clause in HQL?
How can I escape the wildcard characters in a like clause?
E.g.:
select foo from Foo as foo where foo.bar like '%' || :filter ||'%'
query.setParameter("filter", "%");
query.list();
// I'd ...
4
votes
1answer
499 views
Getting the object with the highest member value in hql?
I'm still a little new to hql, and I had a question about aggregation functions and efficiency for a query I'm writing.
Let's say I have this class mapped in hibernate ...