Hi folks, following are my questions:
In a Object which has a one-to-many relation, How many child objects can Hibernate query out when directly handling? Is the number is limited or just limited by machine's memory? Can I adjust the limit?
I just want to get all the child objects out ,modify every object's some fields and write back. I think put them in the Set is OK, But if my child object are too many, then I want to load them in parts, but I don't like to bother to use a Query to get them. Can I merely use the parent object's get method to accomplish this?
Thanks for any help.
|