0
votes
2answers
48 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 ...
0
votes
1answer
64 views

Hibernate IN clause showing error

I have to add a string array to the IN clause. My hibernate query looks like this, Query q = session.createQuery("from CsePrcsngGroup where CSE_SID=? and ...
0
votes
0answers
219 views

How to write query in hibernate(HQL) to perform 2 joins without mapping?

I want to convert the following query into HQL: SELECT C.ID, E.DESCRIPTION as STATUS, E1.DESCRIPTION as SUBJECT FROM CRED C join CODE_EVN E ON E.CODE = C.STATUS_CODE AND E.SUBCODE = ...
0
votes
1answer
87 views

Map a column in Hibernate without a property in the Java class

Is it possible to map a database column using Hiberanate, so I can use it in HQL queries, but not map it to an actual property in the mapped class? I don't need this attribute in my class and would ...
6
votes
2answers
272 views

Hibernate insert query

During insertion in hibernate query i'm passing some fields as table class objects which i've mapped to corresponding tables, The query works fine but the query is becoming too large because each of ...
0
votes
1answer
83 views

Hibernate multiple many-to-one mappings

I have a job table which has multiple many-to-one mappings. A applicants table which has applicants for a specific job and address table which has multiple places about where this job is posted. I am ...
1
vote
2answers
396 views

Hibernate HQL Query with outer join

I would like to ask how to change the OUTER from Informix to HQL query. Currently facing error with unexpected token:outer SQL query: select a.SC_OB_PROFILE_CODE, b.SC_ORIG_SF_GROUP_CODE, ...
0
votes
0answers
54 views

Hibernate Query for selecting only some special classes from a table per hierarchy table

I have the following class structure: GParent |-P1 |-C1 |-C2 |-C3 |-P2 |-C4 |-C5 GParent, P1, P2, Ci (i=0..6) are classes. They have been mapped to a table called yatable in my database. ...
0
votes
1answer
183 views

get results of primary key table from foreign key table in hibernate

I am new to hibernate and trying to use Criteria. I stuck in getting the results from 2 table ie table where primary-foreign key are in realtion. I have Carpooler and SourceToDestinationDetails DTO, ...
0
votes
1answer
1k views

getting org.hibernate.hql.internal.ast.QuerySyntaxException error

As mentioned above, I'm getting the exception mentioned above. Can you please help? thanks I've looked at various guides/tutorials and they don't really tell you what is the mapping required to ...
0
votes
1answer
91 views

retrieve data from a column that mapped as array

I'm using hibernate mapping as follows: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" ...
0
votes
1answer
218 views

Getting org.hibernate.MappingException

This is my first question in Stackoverflow. I'd hope be clear. I'm getting troubles with Hibernate mapping and I don't know where the error is. When I tried to run a HQL like from Sensor I get the ...
0
votes
1answer
87 views

How can I represent my SQL INTEGER as floating point value using Hibernate's formula

To achieve better performance I want to store percent value with two digits after floating point as integer. E.g. 99.99% as 9999. How can I convert back 9999 to 99.99%? I cannot recompile my java ...
0
votes
1answer
268 views

Hibernate 3 createQuery() returning NPE for a basic join - what's wrong?

I'm getting a NPE in createQuery when I try to do a simple many-to-one join using hibernate 3.3.0. I've already elminated possibilities like empty tables and bad entity mappings, nonexistent sessions, ...
2
votes
2answers
257 views

Hibernate HQL Mapping unusual column-name

Good evening! I have been learning and partially using hibernate for some time now and ran into troubles using hql joins. I followed these instructions just for practice and see how it even works... ...
0
votes
2answers
3k views

Using HQL to select from joined tables having one to many relationship between them

I am stuck with this Hibernate thing and dont know how to figure it out. Please help ! So I have these two tables: POSITION positionid(PK), description JOB jobid(PK),positionid(FK),description ...
0
votes
1answer
171 views

How can i write Hibernate Criteria

In what we can add restriction to criteria? For the HQL-1# select activity from EmployeeActivity activity join activity.activityStep as step where activity.currentStep = 1; Criteria ctr = ...
3
votes
3answers
6k views

how to return Map<Key, Value> with HQL

i have a table Permission: id name desc what i am doing right now is to make a query that returns a permission object then put the values in the map programmatically 1- But i was wondering if ...
1
vote
3answers
897 views

hibernate: how to map a Set association so that HQL order by is preserved

OK, this looks mostly like (another) bug/unimplemented functionality in Hibernate. Is it possible to map a Set association in such a way that the "order by" clause in HQL is respected? For example, ...
3
votes
2answers
192 views

How to add property counted in DB to @Entity class?

I have an Entity. And sometimes I need this object also contains some value, call it 'depth'. The query may look like 'select b.id, b.name, b..., count(c.id) as depth from Entity b, CEntity c where ...
3
votes
4answers
8k views

Map entity using query in Hibernate

consider table sales (id, seller_id, amount, date) and here is a view that is generated from sales using query SELECT seller_id, SUM(amount) FROM sales GROUP BY seller_id total_sales (seller_id, ...