-->
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: Préparser les requete hsql?
PostPosted: Tue Dec 20, 2005 9:00 am 
Senior
Senior

Joined: Tue May 10, 2005 9:00 am
Posts: 125
Hibernate version:3.x

J'ai une série de requete HSQL qui sont souvent exécutées:
Code:
session.createQuery(SOME_HSQL_QUERY)
                    .setParameter(0,key)
                    .setParameter(1,new Long(id))
                    .uniqueResult();


La requete HSQL pouvant être relativement complexe par moment, je me demande si il ne serait pas possible de précalculer au moins une partie de sa convertion en SQL, pour aboutir à quelque chose comme ceci (les noms de méthode sont purement hypothétiques):

Code:
/*constructor*/
PREPARED_HSQL_QUERY=SomeNonSessionRelatedObject.prepareQuery(SOME_HSQL_QUERY);

...

/*method*/
session.applyPreparedQuery(PREPARED_HSQL_QUERY)
                    .setParameter(0,key)
                    .setParameter(1,new Long(id))
                    .uniqueResult();


Quelqu'un connaitrait des méthodes dans Hibernate qui permettent d'atteindre cette idée (ne pas devoir parser la request hsql à chaque fois)?


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.