Tagged Questions
1
vote
0answers
18 views
How to specify a field, so that when we query, using Joda LocalDate or LocalDateTime value for the field, it is mapped to same column?
I have a postgres database that has a table "draft" containing a column set_up_time, saved as a timestamp:
@Column(nullable = false)
@Type(type = ...
0
votes
1answer
51 views
How to return an empty Object rather than Null when doing a Left Join
I have a field: "Country" of an Entity class that is optional. The country refers to a table containing a list of ids with country attributes.
In order to include the rows in my table where no ...
0
votes
0answers
34 views
How to make hibernate not to update XMLType column after query
When I use hibernate to query a ORM mapping object, It always update the object to database immediately.I've check this problem, and find it was caused by a mapping property 'appliedTestConfig'. When ...
-1
votes
1answer
31 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 ...
0
votes
1answer
23 views
HibernateException: Errors in named query
When running a particular unit-test, I am getting the exception:
Caused by: org.hibernate.HibernateException: Errors in named queries: UPDATE_NEXT_FIRE_TIME
at ...
1
vote
1answer
57 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;
...
1
vote
1answer
33 views
Lucene Query Parser
I am currently trying to get some fulltext querying done in Lucene. What I would like to achieve is the following:
Upon getting a search term like
"hello AND world"
I would like a query that ...
0
votes
0answers
38 views
How to use single column from composite key in jpaql or hql query
Provider is hibernate 3.6.
I have a composite key declared via @IdClass, consisting of 4 columns. Everything works fine when it comes to storing and retrieving entity instances via a complete ...
0
votes
2answers
56 views
Hibernate Joins
Please how to write this simple working select, in Hibernate query or criteria
SELECT * FROM `call` AS c JOIN `event_customer` AS e ON c.customer_id = e.customer_id WHERE e.dgdelete = FALSE AND ...
0
votes
1answer
55 views
No value specified for parameter 1
I am using Hiberante to connect to postgres database. I am trying to insert a record into the database. I have the values for the record in a string array which I got from a csv file. This is my dao ...
0
votes
1answer
71 views
How to get values of only one column using Hibernate
I have just started developing using Hibernate and I'm facing an issue while trying to select a column in my table. I have a table which has a column called "nome" and it is an String. All I want to ...
1
vote
0answers
32 views
Optimize my query
I have a table in PostgreSQL as below.
CREATE TABLE my_data
(
indexid integer NOT NULL,
empid integer,
domainid integer,
modulename character varying(100),
groupname character varying(50),
...
2
votes
3answers
35 views
Fetch not repeated rows in hibernate
I would like to fetch a list from a query in Hibernate but without repeated elements.
Currently i have something like:
SELECT t FROM Table t join fetch t.list tl WHERE tl.userid=:userid AND ...
0
votes
0answers
59 views
Case statement in Oracle native Query in Hibernate
When i run this query in a AQUA DATA STUDIO it works fine but when i run this query in Hibernate, Hibernate throws SQL Grammar Exception, i have experienced that cause of exception is Case statement ...
0
votes
2answers
51 views
It's posisble to pass query conditions to HIbernate like is done with CakePHP?
In CakePHP, I can query the database passing the WHERE and ORDER conditions in an associative array like in the example:
$cities= $this->City->find('all',
array('conditions' => ...
0
votes
1answer
36 views
hibernate parent - child query, dont filter by children's FK
I have a problem with hibernate query, that filters by culumns from multiple entities inherited from common parent.
here is example:
abstract parent:
@Entity
@Inheritance (strategy = ...
0
votes
0answers
13 views
HIbernate emebedded object with QName
I am having trouble querying the embedded object in hiberate using QName.
Suppose I have a table PERSON with column Address which maps to another table with full address. I want to query for the ...
1
vote
1answer
58 views
Java, Hibernate complicated query
I have a little problem where I don't know how to do it right.
I use Hibernate (MySQL) to store (let's so call it) "products" and I have an object called "Identifier".
Identifier
----------
Listname ...
0
votes
1answer
89 views
convert sql query to hibernate query to retun list of specific object
I 'd like to convert the query below to hql to return me a List<Article> because with createSqlQuery it is impossible , I must convert the result manually :
here is the sql query :
Query ...
0
votes
0answers
23 views
Determine the row number of a pojo via hiberante
I am making use of Hibernate's Query methods: setFirstResult and setMaxResults
I want to grab a bunch of rows surrounding a given random given row, but I would like to use row numbers rather than ...
0
votes
0answers
36 views
Hibernate HQL Query driving me nuts; Help please
I am a newbie in creating HQL Queries. The one I need to build does not seem so hard to me but it just don“t want to work.
I am really thankful for any help!
Here is the situation:
I created a model. ...
0
votes
0answers
15 views
commons-dbpc and hibernate performance
I have an issue regarding the processing time of selects and updates using hibernate mapping.
I'm using Java, Tomcat, Hibernate and apache commons-dbpc pool connector.
I got a back-end service doing ...
1
vote
1answer
59 views
JPA query filter on concatenated fields
I want to query my "customers" table using "name + surname" string as a key.
Name and surname are stored in different fields.
So my query would be:
SELECT
*
FROM
customers
WHERE
...
0
votes
2answers
60 views
Hibernate: Get a list of top level categories from Store items
I have the following entities in my Hibernate application:-
Store, Item, Category with the following relations
Store has a one-to-many relationship with Item
Category has a many-to-many ...
0
votes
1answer
59 views
Hibernate custom query
I found Difficult to implement the following example:
Table Location
Id Location longitude latitude
1 l1 -5.938229 28.38129
2 l2 -7.389323 18.38129
3 l3 -9.378913 ...
0
votes
1answer
63 views
How to have the four quarter of Year relative to a date
I'm working on java swing application with hibernate .
I want to show on jasperreport results for each quarter of a year (I have in database dates so I will extract years that correspond to these ...
0
votes
2answers
139 views
What does addScalar do?
The JavaDoc says:
SQLQuery org.hibernate.SQLQuery.addScalar(String columnAlias, Type type)
Declare a scalar query result
I know what executeScalar is in C#, but this scalar and C# scalar seem to ...
0
votes
3answers
970 views
Java hibernate select multiple rows from a table and assign the result in a list
I want to select multiple rows/records from a table, and then put the result into a "variable". Then I want to print each row's content.
If I use hibernate with Java, how can I do that?
For example, ...
0
votes
4answers
124 views
Join two query results into one result
i want to select a count returned by a query when a particular column is null and another query to select a count when that column is not null into single query how can i achieve it..?
i had tried ...
1
vote
0answers
218 views
How do I cure “org.hibernate.hql.internal.ast.QuerySyntaxException: unexpected end of subtree”?
I'm using Hibernate 4.1.0.Final, JPA 2.0, JUnit 4.8.1, and the H2 in-memory database. I have this JPA query ...
@Override
public List<Organization> findByOrgTypesCountryAndState(final ...
0
votes
2answers
40 views
Using javax.management.* api in Hibernate
Just curious,What is the use of below imports in java.I'm wrongly imported while doing hibernate stuff and those are not compatible with hibernate.
import javax.management.Query;
import ...
0
votes
1answer
185 views
Grails Criteria HQL Many-to-Many with group by
I have two domains related through a many-to-many relationship, Project and ProjectCategory, where projects can have many categories, and one category might be assigned to several projects. So:
class ...
1
vote
1answer
234 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
0answers
78 views
Hibernate Criteria query with counting childs of relation
I have a Java project which uses Hibernate 3.5.4-Final framework and two tables (EVENTS and PARTICIPANTS) as follow:
@Entity
@Table(name="EVENTS")
public class Event implements Serializable {
...
0
votes
1answer
353 views
Hibernate Native SQL Mapping to Entity with Selection Example
I tried to create native sql query and map to entity class with parameter but fail.
/**
* @return
*/
public List<PoolRuleMapping> getAllPRM() {
Session session = null;
...
0
votes
1answer
537 views
Hibernate Hql for bulk update using two entity tables
I am using this query in mysql for updating multiple values for the column2 in Table1 with the values in the column2 in Table2 on certain condition. but i am not able to give two entity names in the ...
0
votes
3answers
81 views
HQL Query with like and or operators
I'm using Hibernate, I want to get records based on like condition which contains or condition. It is something like this,
from Employee where empno in (select empno from Employee where empname ...
0
votes
1answer
200 views
hibernate - get named query string without session
Using a Session a named query can be retrieved like following:
Query query = session.getNamedQuery(queryName);
But how can a named query be retrieved without using a session?
I am modifying the ...
0
votes
2answers
95 views
HQL that returns nested children where all the children matches the condition
I have a class Parent with a one-to-many children set. The children is nested and can have n number as depth. I want to write a hql which will return a parent with children, grandchildren, ...
1
vote
1answer
142 views
how to use 'group by' on hql?
I have a native query I need to change to HQL.
The original query is:
SELECT COUNT(DISTINCT `table`.`id`) FROM `database`.`table` WHERE
(`table`.`date`" " BETWEEN '" + year + "-01-01 00:00:00' AND ...
3
votes
2answers
174 views
Select count(*) from many tables
Dear friends I have a requirement to get the count(*) from one table with different criteria. I am using hibernate with spring.I am using below query for that.
"select " +
"(select ...
4
votes
2answers
66 views
Is there any other logical or more robust way
I have a sql query
select count(salary)
from USER_DETAILS
where salary>0 and salary<1000 union all
select count(salary)
from USER_DETAILS
where salary>1000 and salary<10000 union all
...
2
votes
1answer
154 views
Hibernate IN Clause with multiple columns
Need to know how to construct a Hibernate Query which fetches results matching an IN clause containing multiple column values.
e.g.,
Query query=session.createQuery( "from entity e where (e.abc, ...
1
vote
0answers
73 views
Querying map with hibernate, jpql
I was wondering i had the following error while querying a map with hibernate jpql:
Hibernate version
4.1.5
/** Map */
@ElementCollection(targetClass = Credential.class)
@Enumerated(EnumType.STRING)
...
0
votes
0answers
51 views
named query - conditionally render fragment or fragment placeholder
Is it possible to conditionally define select fragments within a named query in hibernate?
I have some big query which I don't want to duplicate just because it is checking one more key constraint ...
1
vote
1answer
297 views
hibernate.QueryException: could not resolve property
Here is another case of this ERROR:
21:22:15,881 ERROR [SessionFactoryImpl] Error in named query: ch.software.gvs.TroubleNotification_DeviceType.byType org.hibernate.QueryException:
could not ...
0
votes
0answers
124 views
Hibernate Post-Insert Event Unexpected Behavior
I am working with Hibernate 3.5.6 trying to make use of the Post-Insert event listener. I encountered a behavior which seems inconsistent with the notion of post processing an event. I go to commit an ...
0
votes
0answers
73 views
Too many queries selecting many-to-many related fields in hibernate
I have three related (many-to-many) tables:
A (int id)
B (int id)
C (int a_id, int b_id)
I want to get all entities of "A" with initialized set of entities of B.
Mapping for A:
<set name="listB" ...
1
vote
2answers
170 views
How to cast from a list<Objects> when using Hibernate query language?
I've been working on a hibernate/JPA project, and during the development i have created a method to retrieve a list of an object called Appel_Offre.java, and in the run time an exception occurred...
...
0
votes
1answer
181 views
Hibernate - Could not resolve property
I have table Users which contains column iduser (long) fk -> to table login to column id_user (long).
But I don't want to map table login into users. I just want to use this column iduser in Users ...



