-->
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.  [ 2 posts ] 
Author Message
 Post subject: SQL natif avec Max
PostPosted: Tue Apr 27, 2010 8:13 am 
Newbie

Joined: Tue Oct 06, 2009 11:49 am
Posts: 4
Bonjour à tous,

J'utilise Hibernate 2 et j'ai une requête toute bête que je veux faire en SQL natif vu qu'il s'agit de récupérer un Max d'un champ qui en base est un varchar:
Voici mon code:
Code:
   public static String findNextNoReglByCodeSynd(String codeSynd) {
      List list = new ArrayList();
      Session session = HibernateUtil.getSession();
      Transaction tx = null;
      try {
         tx = session.beginTransaction();
         String req = "SELECT MAX(TO_NUMBER(NO_REGL)) "
            + "FROM ART_LST_REGL_GEO "
            + "WHERE COMPTEUR_NO_REGL LIKE '"
            + codeSynd
            + "%'";
         list = session.find(req);
         tx.commit();
      } catch (Exception e) {
         LOGGER.error(e.getMessage(), e);
      }
      return (list.size() != 0) ? list.get(0).toString() : "1";      
   }


Malheureusement j'ai une erreur et hibernate me retourne :
Code:
net.sf.hibernate.QueryException: ( expected before ) in select [SELECT MAX(TO_NUMBER(NO_REGL)) FROM ART_LST_REGL_GEO WHERE COMPTEUR_NO_REGL LIKE 'DEP056A%']


Je ne comprends pas ce qui embête hibernate... et vu que je retourne un type primitif je ne peux pas utiliser la fonction Hibernate createSQLQuery(String, String, Class).

Merci d'avance a ceux qui répondront.


Top
 Profile  
 
 Post subject: Re: SQL natif avec Max
PostPosted: Mon May 03, 2010 4:32 am 
Newbie

Joined: Tue Oct 06, 2009 11:49 am
Posts: 4
Moralité, j'ai modifié la base de données pour transformer le VARCHAR2 en NUMBER.
Du coup plus besoin de caster la chaine en nombre et donc le MAX fonctionne.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.