Re: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Carlos Rovira
, November 25, 2006 3:32 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] How to implement Lazy Hibernate? Hi All, I'm attempting to create a Cairngorm/FDMS/Hibernate/MySQL example program which I'll publish to the community once completed. I used the MySQL Sakila sample DB (pared down to 3

Re: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Douglas McCarroll
Hi Kelly, Lazy Loading probably isn't going to help you. You probably want to consider doing an intermediate class between any many-to-many associations in hibernate so you have two many-to-one associations instead. Thanks for your response Kelly, but I think that I already have an

RE: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Kelly
://ups.com ] On Behalf Of Douglas McCarroll Sent: Saturday, November 25, 2006 3:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to implement Lazy Hibernate? Hi All, I'm attempting to create a Cairngorm/FDMS/Hibernate/MySQL example program which I'll publish to the community once

Re: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Douglas McCarroll
*Sent:* Sunday, November 26, 2006 12:49 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] How to implement Lazy Hibernate? Hi, I'm currently searching for info about this topic. Could someone provide some links about how FDS and Hibernate work thogether in this issue

RE: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Kelly
Sent: Sunday, November 26, 2006 7:53 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to implement Lazy Hibernate? Hi Kelly, Lazy Loading probably isn't going to help you. You probably want to consider doing an intermediate class between any many-to-many associations

Re: [flexcoders] How to implement Lazy Hibernate?

2006-11-26 Thread Douglas McCarroll
Hi Kelly, Maybe if you eliminated the one-to-many relationships on Film and Actor. Then you would have a separate collection of FilmActors that you could query by film or actor. It would eliminate the circular reference but I am not sure it’s the best solution or what you had in mind.

[flexcoders] How to implement Lazy Hibernate?

2006-11-25 Thread Douglas McCarroll
Hi All, I'm attempting to create a Cairngorm/FDMS/Hibernate/MySQL example program which I'll publish to the community once completed. I used the MySQL Sakila sample DB (pared down to 3 tables - Film, Actor FilmActor - at present) and used HibernateTools to reverse engineer the requisite Java

RE: [flexcoders] How to implement Lazy Hibernate?

2006-11-25 Thread Kelly
:[EMAIL PROTECTED] On Behalf Of Douglas McCarroll Sent: Saturday, November 25, 2006 3:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to implement Lazy Hibernate? Hi All, I'm attempting to create a Cairngorm/FDMS/Hibernate/MySQL example program which I'll publish to the community once