Beginner |
|
Joined: Mon Sep 15, 2003 9:10 am Posts: 43
|
Hi,
i hava a new question :
This is my fonction :
public List getUtilisateurs() throws DAOException {
List liste=null;
Session session=getSession();
try {
Transaction tx=session.beginTransaction();
liste=session.find("from Utilisateur u order by upper(u.nom)");
tx.commit();
} catch (HibernateException e) {
}finally{
closeSession();
}
return liste;
}
My question : Is the return list totaly independent of the hibernate cache or must i create copy.
Thanks,
Fabien.
|
|