-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 
Author Message
 Post subject: Hibernate / MySQL cast as formula
PostPosted: Wed Nov 10, 2010 10:49 am 
Newbie

Joined: Wed Nov 10, 2010 5:09 am
Posts: 3
Hibernate 3.6.0

Hi
Newbie - so go easy :)
I am using Hibernate with Spring where I have an employee table with a string reference.
I want to add a new property for a specific instance which casts the reference as numeric
(in this case all the employee references are numeric)
so in employee.hbm.xml I have ..
Code:
<property name="employeeNo" type="string">
   <column name="employeeno" length="20" />
</property>
...
<property name="employeeNumber" type="integer" update="false"
   insert="false" >
   <formula>cast(employeeno as integer)</formula>
</property>


However on loading app I am getting error (MySQLSyntaxErrorException) because the 'generated' SQL looks like
Code:
...   cast(employees0_.employeeno as employees0_.integer) ....


I would appreciate any pointers one may have as to where to look
I'm also unsure if spring has any 'effect' on this.

I have tried various changes including
- trying to write my own custom CastFunction, though it never gets called?
- cast(employeeno as signed) - which is what Mysql would expect.
- trying annotation in model file which same result (@Formula( ..)
- using brackets around whole formula

Thanks
Daniel


Top
 Profile  
 
 Post subject: Re: Hibernate / MySQL cast as formula
PostPosted: Wed Nov 10, 2010 1:13 pm 
Beginner
Beginner

Joined: Tue Oct 26, 2010 6:12 pm
Posts: 29
Quote:
Code:
<formula>cast(employeeno as integer)</formula>


The MySQL integer type is SIGNED or UNSIGNED.
http://dev.mysql.com/doc/refman/5.5/en/ ... ction_cast

The formula has to be a SQL fragment. So I believe it should be:

Code:
cast(employeeno as SIGNED INTEGER)


Top
 Profile  
 
 Post subject: Re: Hibernate / MySQL cast as formula
PostPosted: Wed Nov 10, 2010 1:15 pm 
Beginner
Beginner

Joined: Tue Oct 26, 2010 6:12 pm
Posts: 29
Quote:
- cast(employeeno as signed) - which is what Mysql would expect.


Me bad! See that you have attempted this before with no luck.


Top
 Profile  
 
 Post subject: Re: Hibernate / MySQL cast as formula
PostPosted: Thu Nov 11, 2010 6:32 am 
Newbie

Joined: Wed Nov 10, 2010 5:09 am
Posts: 3
For those interested, I have used some lateral thinking as a workaround

The idea behind the issue was that I need a numeric sort of the employees for a screen display
I am using the Hibernate Generic DAO framework http://code.google.com/p/hibernate-generic-dao/ for searching, so what I did in the end was allow it to do a custom sort of type "cast(employeeno as integer)"

It aint elegant, in fact its rather nasty, as you cant extend the HibernateSearchProcessor. However it does work and that will suffice for now and the real solution becomes a lower priority.

Daniel


Top
 Profile  
 
 Post subject: Re: Hibernate / MySQL cast as formula
PostPosted: Thu Nov 11, 2010 4:07 pm 
Beginner
Beginner

Joined: Tue Oct 26, 2010 6:12 pm
Posts: 29
FWIW, it appears to be a known defect. In general values referred to in the formula are replaced by their property references and there doesn't seem to be any way to escape them.

http://opensource.atlassian.com/project ... se/HHH-473


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.