0
votes
0answers
102 views

Unable to use Alias with case in Hibernate Formula

I am using Hibernate, in one of the hbm I hve defined a formula. It works well in this form: <property name="isUpdatable" type="java.lang.Boolean"> <formula> ...
0
votes
0answers
132 views

Hibernate/JPA optional formula column

I'd like to be able to use a group formula in a transient column in a Hibernate/JPA mapping for a named query without screwing up the CRUD operations. Hibernate version is ~3.0, DB is Oracle 10 This ...
0
votes
1answer
111 views

Does Hibernate4.1 still support @Formula annotation?

I was trying to use @Formula annotation in one of my Hibernate4.1 entity classes. From some articles I learnt that this annotation need to be placed upon the property definition, and so I did. But ...
0
votes
0answers
74 views

Prevent Hibernate from prepending generated table alias

I have a formula to fetch latest codes. In order to prevent issues with correlated queries missing outer alias when selects are nested two levels deep, I've come up with this: <property ...
1
vote
0answers
322 views

JPA @formula and Collection<?>

@Entity @Table(name = "Person") public class Person { @Id private Long id; private String firstName; private String lastName; @ManyToOne(fetch = FetchType.LAZY, cascade = ...
0
votes
0answers
305 views

Hibernate @ManyToOne relationship with Formulas

I've spent the whole day trying to figure this out. I have two tables which I have to join, one of them has the ID in normal NUMBER field, the other one, the ID is hidden in a longer string. I am ...
2
votes
1answer
1k views

Hibernate: Use HQL inside @Formula annotation?

From what I've been testing it seems that you can only use standard SQL inside a @Formula annotation. The documentation is not very descriptive about this feature (I've found one paragraph about it at ...
0
votes
1answer
4k views

How to use @Formula (in Hibernate) to refer to the same (current) object

I have this class @Entity @Table(name = "DB.APPL_SESSION") @AttributeOverrides({@AttributeOverride(name = "id", column = @Column(name = "APPL_SESSION_ID"))}) @SequenceGenerator(name = ...
1
vote
1answer
303 views

JPA Hibernate manyToMany with non-unique key

I have two entities (tables): Department and Person. Both tables have a field CODE which is not unique. How can I define manyToMany bidirectional relations between these tables? Department has ...
1
vote
1answer
555 views

Hibernate: Load entities with Formula

Is it possible to load an entity using a Formula? For example: @formula("(select * from myEntity ent where ent.isLatest = TRUE )") publicmyEntity getmyEntity() { return ...
2
votes
1answer
2k views

Hibernate @Formula building query incorrectly

I'm adding a formula to a field: @Formula(value = "(select count(*) from approvalGroup as a where a.isAccounting=true)") But the query is failing because Hibernate is trying to make 'true' a field ...
2
votes
3answers
2k views

Hibernate Criteria order by a specific state

Hi In the database, we have a PRSN_ADDRESS table which has many addresses. A user is shown these addresses in a grid. The requirement is show the addresses associated with this user's state first and ...
4
votes
1answer
3k views

Native SQL query for an Hibernate entity using @Formula results in NullPointerException

I've got an simple Hibernate entity for which I use the @Formula annotion: @Id private Long id; private String name; @Formula("(select count(f.*) from foo f where f.id = id)") private long bar; ...
1
vote
2answers
5k views

Hibernate: Many-to-one using Formula

I hope someone can help me find an answer. I'm working with a legacy database and I can't change any of the preexisting tables, because other apps depend on them. I have three main existing tables: ...
0
votes
3answers
6k views

hibernate property formula how to get more than 1 row?

In the hibernate mapping file I use property formula to get any value. <property name="price" type="double" formula="(select SUM(amount) ...) /> But it allows to get only 1 row. How can I get ...