HQL, acronym for "Hibernate Query Language", is a query language used by Hibernate and NHibernate
1
vote
2answers
32 views
fetching multiple entities using HQL
Is it possible to fetch multiple entities using HQL? I find myself writing a lot of code like:
obj1 = HQL1;
if (obj1 == null)
obj2 = HQL2;
So I am wondering if it is possible to fold the obj1 == ...
0
votes
1answer
28 views
HQL - unusual queries
Using Northwind database I would like to make queries like
Number of orders from each Customer.Country
What is the sum of OrderDetails.UnitPrice for every day of week
Average time from ...
1
vote
1answer
17 views
Reindexing with hibernate/HQL
We are trying to reindex our database through hibernate by using session.createQuery and executeUpdate. For some reason this is simply just not working. This all is done in a job that has a timer to ...
0
votes
0answers
17 views
HQL: ORA-00928: missing SELECT keyword
SELECT COUNT(*), (CASE WHEN (idai.subscriber IS NOT NULL or EXISTS ELEMENTS(idai.autoSubscribers)) THEN 1 ELSE 0 END)
FROM IDeviceAppInstance idai
WHERE idai.publicationNode = :node
GROUP BY
...
0
votes
0answers
12 views
Restriction.or in Hibernate
I have this select in SQL.
How can I convert it to HQL using Restrictions.or ?
select * from users where users.user_type = 1
or user.id = 1001;
1001 is not of user_type = 1
0
votes
0answers
21 views
Map hibernate projections result to java POJO model
I've been using spring and hibernate for this past few weeks and I've always been learning something new there.
Right now I've got a problem that I want to solve with Projections in Hibernate.
...
0
votes
2answers
15 views
How to use Hibernate HQL and AVG-Function in MySQL
I have the following Hibernate-Query, which works fine so far.
public static List<PerformanceLog> getStatistics() {
return entityManager().createQuery(
"SELECT NEW ...
0
votes
0answers
35 views
HQL - Search id's in one table
How to make a research to get all tasks, activities and phases of one Project, using NamedQuerie?
The schema to create a Project is:
One project have many task, task have many activities and ...
0
votes
1answer
15 views
Grails building HQL
I am using grails 1.3.9 and want to build a query using HQL. The result I should get must be printed like this:
com.controllers.global.domain.DomainClassName : 43042
and my query currently looks ...
0
votes
0answers
14 views
regarding the inner join through criteria API
I have the following two tables as shown below
CREATE TABLE "IPA_AAA
( "ID" NUMBER(32,0) NOT NULL ENABLE,
"VERSION" NUMBER(20,0) DEFAULT 0 NOT NULL ENABLE,
"CREATEDDATE" TIMESTAMP ...
0
votes
0answers
15 views
How to get WHERE <column> IN using hibernate?
i'm still beginner in using hibernate to query results. i have this a bit complicated query to run in hibernate. how do i convert this query to hibernate?
select a from WORKSPACE
where WP_FROMID in ...
-1
votes
0answers
22 views
generation hql and criteria on the inner join condition
I have the following two tables as shown below
CREATE TABLE "IPA_AAA
( "ID" NUMBER(32,0) NOT NULL ENABLE,
"VERSION" NUMBER(20,0) DEFAULT 0 NOT NULL ENABLE,
"CREATEDDATE" TIMESTAMP ...
0
votes
1answer
40 views
Querying a grails tree object
I have a Section domain that looks like this. I build the navigation from it and order stories under sections or sub sections eg: news > crime > the great train robbery
class Section {
String ...
-1
votes
0answers
16 views
Even my class is mapped I am getting not mapped exception in hibernate java application
I am getting WebsiteAvailability is not mapped.But it is already mapped.still getting that exception only in my hibernate java application.I am using postgresql.And using entity class names in HQL.
0
votes
0answers
13 views
update a clob column by HQL
Suppose that I have a table:
A (
......
xmlData Clob ;
)
And java class mapping to this table:
class A {
Clob xmlData;
}
I want to update the xmlData column by HQL in java code:
Clob ...
0
votes
1answer
41 views
setString(0,string) not setting the string in java
Below is my code inside a method named getUrlDetails() of WebsiteAvailability class
inside the method: getUrlDetails(String selUrl)
List<WebsiteAvailability>avaList=new ...
0
votes
2answers
22 views
Convert SQL to HQL for NOW()
Please help in converting below sql query to hql
SELECT * FROM INVOICE WHERE INVOICE_DATE > NOW() - INTERVAL 7 DAY
System throwing error for NOW()
0
votes
1answer
20 views
what wrong with this hql query, I use fetch in my hql to overload the child sets
string hql = "from Customer as c left outer join fetch c.Orders"
+ "where c.CustomerId=:id";
using(Session)
{
return Session.CreateQuery(hql).SetInt32("id",id).List<Customer>();
}
...
1
vote
0answers
27 views
eager fetch objects in collections
I have Cat objects mapped using Hibernate similar to the one mentioned in the manual: http://docs.jboss.org/hibernate/core/4.3/manual/en-US/html_single/ (example 4.1) . Fields in the Cat class are set ...
0
votes
1answer
17 views
override fetch strategies in HQL
I would like to eagerly fetch all fields of an object using HQL, overriding any fetch strategy annotations. Is there any special HQL syntax for doing that? Or do I need to add inner join fetch to each ...
0
votes
0answers
17 views
How to do AND operation between Object attributes passed to hibernate query by example?
I used hibernate query by example to check if for object existence but it seems that its working by OR the object attributes, this is my query by example method:
public List<T> ...
0
votes
1answer
76 views
In hive, count time between two time
In hive, I have a table with lots columns, which two of them are begin_time, end_time.
I need to count the number on the each time
a piece of the table is this:
begin_time end_time
...
-5
votes
0answers
42 views
HIVE - SUBQUERY IN CASE WHEN STATEMENT [closed]
CREATE TABLE HIVE_TPCE_TEMP.TMP_CDMA_CD AS SELECT A.DRI,C.BOUND_ID,A.CT_ID,A.CD_ID,A.CID,
...
0
votes
1answer
19 views
advise for HQL as need toreplace the criteria
I have use criteria as shown below , could you please advise how we can replace this with HQL
public List<abc> getdef(String numericid) {
Criteria query = ...
0
votes
0answers
41 views
HQL nested SELECT
I wish to "convert" this SQL query into an HQL query:
SELECT count(*) FROM (SELECT DISTINCT val FROM myTable WHERE val2='tot') q;
I tried to convert in something like this, but it doesn't work:
...
0
votes
1answer
34 views
Changing HQL to Linq?
I have a situation where I was using a Named HQL Query, but now that my DAL has changed, I don't know how to re-do the named query in Linq. I have an entity called a HolterTest, which will be read ...
-1
votes
1answer
32 views
Hibernate Query, how to group different tables?
Im pretty new to databases, and programming in general, i tried everything but could not come up with a solution, my problem is:
I have 2 tables in my database:
Cars
Model
in my Cars table i have ...
1
vote
1answer
67 views
Hql, How to write join query between tables that has one to many relationship?
I have 2 tables. 1st one have oneToMany relationship with 2nd.
Class Author
@Entity
@Table(name = "Author")
Public class Author{
@Id
@Column(name = "AuthorId")
private int autherId;
...
0
votes
2answers
52 views
Loading data from a table in a Map as Column Name Vs Value using Hibernate
I have been using Hibernate for a while and this time I am trying to do something uncoventional here. Not even sure of its possible.
What I want to do is to load data from a Single table, where in ...
2
votes
3answers
58 views
setParameterList list with huge data
I have an Integer array list with 8000 items in it.
And i set that array list in hql using setParameterList method.
Just an example query
return (Integer) ...
0
votes
1answer
31 views
extract *HQL* in Hibernate
Is there a way to extract the HQL from a Hibernate Criteria or get or load query? I have seen ways to extrac the SQL query from such objects but not HQL.
1
vote
0answers
33 views
hibernate batch select from get and criteria
I would like to batch a bunch of get and Criteria queries together and ask Hibernate to issue them in a single batch. Does Hibernate have such an interface? If not, is there a way to extract the HQL ...
0
votes
0answers
17 views
HQL 1 query mutiple tables multiple results
Ok i got 20 tables that have all the same field
but they are use for different product and reason.
My question is i got this field let's say totalCost
in every table.
how do i built a query that ...
0
votes
2answers
47 views
Hibernate : aggregate two entities in one class to retrieve data with one HQL query
I have one class like this :
public class BookAuthor {
private Book book;
private Author author;
}
Book and Author are defined as entities.
When I try to retrieve the data, this way :
final ...
1
vote
0answers
41 views
Hibernate query left outer join.
SELECT Table1.name,Table1.url,Table1.address,Table1.city,Table1.state,Table1.ErrorMsg as Msg,
sum(Table2.id IS NOT NULL) as QE,Table4.tp as PT FROM Table1
LEFT OUTER JOIN Table2 ON ...
0
votes
1answer
67 views
How JPA/Hibernate retrieves the database fields and tie them to entity fields
I've this query:
Query query = entityManager.createQuery("Select a From Person a", Person.class);
and Person class is:
package net.tirasa.test.addressbook.data;
import java.io.Serializable;
...
0
votes
0answers
44 views
Error on HQL query with parameter
I have the following classes defining a ManyToMany relation between Students and Courses.
Courses class:
import java.io.Serializable;
import javax.persistence.*;
import java.util.HashSet;
import ...
0
votes
1answer
42 views
Cannot load a hibernate object from database with timestamp
I have a hibernate mapping with a composite primary key consisting of a many-to-one association and a timestamp. I am trying to check if the object is already in the database before creating a new ...
0
votes
1answer
47 views
Eclipse,Hibernate tools, Is there any way to preview the sql equivalent query for criteria editor
I am using Hibernate tools 3.3 in Eclipse Indigo.
Is there any way to view the Sql equivalent query for the criteria that I created?
There is one Hibernate Dynamic SQL View which shows Sql preview ...
0
votes
1answer
35 views
Java Generics child backreference to parent / selecting on subclass properties
I have a generic class that can be extended and generic child members that can be extended.
I'm trying to to make the group reference in SpecialGroupMember be SpecialGroup in stead of "Group", mainly ...
0
votes
1answer
73 views
HQL Join - Path expected for join! hibernate
I am new to hibernate and I met a following problem:
I got "Path expected for join!" exception when I tried to run this query:
> String hql = "select avg(t.price) from Ticket t JOIN Flight f ...
0
votes
0answers
81 views
org.hibernate.exception.LockAcquisitionException
Using the hibernate version of this SQL
SELECT *
FROM CI_CASE case
WHERE case.CASE_TYPE_CD = 'SO-E-DEEN'
AND case.CASE_ID
IN (SELECT DISTINCT case2.CASE_ID
FROM CI_CASE ...
0
votes
1answer
38 views
Join Non ContentPart Table to ContentPart Table Using Orchard HQL API
I am trying to perform a simple join between two different tables using the Orchard HQL API. The problem is that one of the tables is not a ContentPartTable. Is this possible??
Here is what it would ...
0
votes
2answers
90 views
Querying a many to many join table with HQL
I need some advice for creating a hql query.
Situation: I have set of Nodes to which can be assigned a configurable amount of Flags. To do this I have the following classes/tables:
Classes:
class ...
1
vote
1answer
40 views
Using an expression in Groovy HQL update
I'm trying to set a column in one table based on one of two possible columns from another one. Since HQL updates do not support joins, I'm trying to work around and use an OR in the set statement, ...
0
votes
1answer
53 views
using parameter and null - SELECT NEW in HQL
I'm new to HQL. I hope to know whether I can create such HQL queries with select new:
1.select new MyObject(..., :MyParam) from ... - using parameters in the constructor
2.select new MyObject(..., ...
0
votes
0answers
34 views
Hibernate : expecting “end”, found '/' SQL Exception
I am trying to run a query which looks as follows
SELECT INV.SKU_NUM as skuNum , ITM.REG_DES as des, ITM.DFLT_WHS_UOM as uom, CASE WHEN ITM.BILL_QTY IS NULL THEN NULL ELSE (CASE WHEN ...
0
votes
1answer
34 views
Best way to select from large self referencing table (HQL)
I have a large self-referencing table Items. Items have parent Items, something like so:
ITEMS
Long id
String name
String type
Long parentId (fk. ref Items)
The use is non-circular (so it's a ...
0
votes
1answer
47 views
How can i do select count(*) from TABLE with nHibernate without queryOver?
I am using an older version of nHibernate due to my old version of .net. QueryOver isn't an option. What's an efficient way to count the rows of a table with nhibernate?
0
votes
1answer
30 views
HQL to get database timezone
Is there a way to get database timezone using HQL?
Will the same HQL work for all databases?
Appreciate quick response. Thanks.




