Hello,
I am using hibernate 2.1.8 on a client/server architecture.
When I do a querie for some Objects these objects contain a set with other objects.
Now when I look wich type the Set is it is of the type net.sf.hibernate.collection.Set.
Is it posible to make the type java.util.Set else I have to distribuite te hibernate package with the client.
The query I use is:
bestellingen = session.find(
"from Bestelling as Bestelling where Bestelling.afgewerkt = ?",
new Boolean(false),
Hibernate.BOOLEAN);
Thanks
Steven
|