-->
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.  [ 1 post ] 
Author Message
 Post subject: java.lang.Double cannot be cast to java.lang.Long
PostPosted: Mon Jan 28, 2008 12:23 pm 
Newbie

Joined: Thu Aug 30, 2007 9:14 am
Posts: 6
I'm executing a HQL query that return an Object, that I will cast to Double,
inside that query i pass Double named parameters, and I use some hql function that probably returns integers, such as count(...).

I do an aritmetic computation, + / *
I expect that since some of the values are Double, also Long are converted to Long.. but since I get this exception, I suppose this not happen.

The strange thing is that if I execute that query from Hibernate Tools of Eclipse i correctly get the result.

Any idea?
thanks

My query looks like this:

Code:

         result = getEntityManager()
            .createQuery("select ...")
            .setParameter("aDoubleVar", aDoubleVar)
            .setParameter("anotherDouble", new Double(4))
            .getSingleResult();
         if (result instanceof Double) {
            doubleResult = (Double) result;
         }   


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

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.