-->
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.  [ 3 posts ] 
Author Message
 Post subject: comment Récupérer des champs du req
PostPosted: Wed Dec 17, 2008 9:52 am 
Newbie

Joined: Sat Oct 11, 2008 10:18 am
Posts: 12
Bonjour,

J'utilise dao implémenté par hibernate, et j'ai fait la requete suivante



Quote:
public void methodetest()throws DataAccessException{

List list = getHibernateTemplate().find("select vehicule.codevehicule ,vehicule.vehnimmatriculation from Vehicule as vehicule");
Iterator i = list.iterator();

while(i.hasNext()){
Vehicule vl = (Vehicule) i.next();
System.out.println(vl.codevehicule);
System.out.println(vl.vehnimmatriculation);
}


}


Mais il me donne une erreur d'exécution dans la class dao !
Comment je peux récupérer la valeur des champs codevehicule et vehnimmatriculation avec se type de requette HQL

Merci pour tous


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 17, 2008 11:45 am 
Regular
Regular

Joined: Mon Apr 19, 2004 6:54 pm
Posts: 79
Si tu recuperes un objet Vehicule et ton code fonctionne
Code:
List list = getHibernateTemplate().find("select vehicule from Vehicule as vehicule");
Iterator i = list.iterator();

while(i.hasNext()){
  Vehicule vl = (Vehicule) i.next();
  System.out.println(vl.codevehicule);
  System.out.println(vl.vehnimmatriculation);
}


si tu recuperes les champs de Vehicule alors tu obtient un tableau d'objets
Code:
List list = getHibernateTemplate().find("select vehicule.codevehicule ,vehicule.vehnimmatriculation from Vehicule as vehicule");
Iterator i = list.iterator();

while(i.hasNext()){
Object[] objs = (Object[]) i.next();
System.out.println(obj[0); // codevehicule
System.out.println(obj[1); // vehnimmatriculation
}


Christophe


Top
 Profile  
 
 Post subject:
PostPosted: Thu Dec 18, 2008 4:51 am 
Newbie

Joined: Sat Oct 11, 2008 10:18 am
Posts: 12
merci bcp votre réponse marche bien


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