Re: M:N Question

2005-03-18 Thread Anad Fida
Can you please give some example. Just one lines is good enough! Amad Clinton Begin wrote: Yes, either of the M:N solutions should work (either separate select/lazy-load, or join/repeating group mapping). Clinton On Fri, 18 Mar 2005 10:48:49 -0800, Anad Fida <[EMAIL PROTECTED]> wrote: I

M:N Question

2005-03-18 Thread Anad Fida
I have a quick question and just need to know if I can use any ofM :N solutions , I have a object (Parent) with different collection properties. I would like to load them all in one query but if one of them is empty or there is no record that relates to parent for one of the child properties I

M:N Question

2005-03-18 Thread Anad Fida
I have a quick question and just need to know if I can use any ofM :N solutions , I have a object (Parent) with different collection properties. I would like to load them all in one query but if one of them is empty or there is no record that relates to parent for one of the child properties I

M:N Question

2005-03-17 Thread Anad Fida
I have a quick question and just need to know if I can use any ofM :N solutions , I have a object (Parent) with different collection properties. I would like to load them all in one query but if one of them is empty or there is no record that relates to parent for one of the child properties I

Re: queryForMap from resultMap

2005-02-17 Thread Anad Fida
not sure which issue your asking for help on... How to reduce the number of queries. -- or -- How to queryForMap using the resultMap complex properties functionality. Could you please clarify what you are asking. Brandon On Thu, 17 Feb 2005 03:05:56 -0800, Anad Fida <[EMAIL PROTECTED]> wrote

queryForMap from resultMap

2005-02-17 Thread Anad Fida
I have a Domain Object as following, public class Account { private long accountKey; private String accountName; private String userName; private Date lastUpdateDate; // Holds account attribute name - values private Map accountAttributes; // Setters/Getters } I have accounts, att

queryForMap from resultMap

2005-02-17 Thread Anad Fida
I have a Domain Object as following, public class Account { private long accountKey; private String accountName; private String userName; private Date lastUpdateDate; // Holds account attribute name - values private Map accountAttributes; // Setters/Getters } I have a