Tagged Questions
3
votes
1answer
2k views
Hibernate: Overriding mapping's EAGER in HQL?
It's possible to override LAZY in HQL using LEFT JOIN FETCH.
FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id
Is it also possible to override EAGER? How?
1
vote
3answers
178 views
Flex-Cairngorm/Hibernate - Is EAGER fetching strategy pointless?
I will try to be as concise as possible. I'm using Flex/Hibernate technologies for my app. I also use Cairngorm micro-architecture for Flex. Because i'm beginner, i have probably misunderstand ...
1
vote
1answer
887 views
How do you programmatically turn off eager fetching with hibernate?
I have in my mapping an association to an eagerly loaded collection (lazy="false" fetch="subselect"). How can I turn that off programmatically with Hibernate when I do a query?
Thanks
0
votes
0answers
232 views
FetchType.Eager is unable to fetch, FetchType.LAZY is also not working
Hi I've made two entity classes named Designaton.java and Module.java. In Designation class there is a toMany relationship. I tried to Fetch data using FetchType.EAGEr as well as FetchType.LAZY also, ...