Re: Mapping a Complex Object

2010-05-27 Thread Niko Ustinov
one will be easily found. This is a unique design practice, and thus will require a unique solution. Clinton -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p28693487.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com

Re: Mapping a Complex Object

2010-01-04 Thread Dan Forward
-a-Complex-Object-tp26961927p27019604.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h

Re: Mapping a Complex Object

2010-01-04 Thread Nathan Maves
think you have done an outstanding job with it. If at all possible, I hope I can contribute back to iBATIS and make it better. Sincerely, Dan Forward -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27019604.html Sent from the iBATIS - User - Java

Re: Mapping a Complex Object

2010-01-04 Thread Martin Ellis
for building such a great tool! Despite my moanings, I think you have done an outstanding job with it. If at all possible, I hope I can contribute back to iBATIS and make it better. Sincerely, Dan Forward -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object

Re: Mapping a Complex Object

2010-01-04 Thread Dan Forward
this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27020853.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org

Re: Mapping a Complex Object

2010-01-04 Thread Dan Forward
'against the grain'. I may need to go that route as well. I just wanted to see if it could be done beautifully first. -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27020976.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com

Re: Mapping a Complex Object

2010-01-04 Thread Clinton Begin
it better. Sincerely, Dan Forward -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27019604.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com

Re: Mapping a Complex Object

2010-01-03 Thread Dan Forward
, this would be a very appealing approach. Once again, thank you for your thoughtful replies. They have been a tremendous help in getting to this point. Sincerely, Dan Forward -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27002148.html Sent from

Re: Mapping a Complex Object

2010-01-03 Thread Clinton Begin
again, thank you for your thoughtful replies. They have been a tremendous help in getting to this point. Sincerely, Dan Forward -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p27002148.html Sent from the iBATIS - User - Java mailing list archive

Re: Mapping a Complex Object

2010-01-02 Thread Guy Rouillier
Comments inline. Overall, you seem to have made this much more complicated than it needs to be. Looking at your database schema from your original message, all the table columns are simple strings or number, except for the gender enum. But you've elected to make every column a distinct

Re: Mapping a Complex Object

2009-12-30 Thread Dan Forward
mapping before. -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p26970785.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-java

Re: Mapping a Complex Object

2009-12-30 Thread Guy Rouillier
On 12/30/2009 1:39 PM, Dan Forward wrote: The Association tag looks promising, but I am confused by the column attribute. It wants an ID for the Name, but Names are not first-class data objects and have no ID. The Association tag seems to be intended for a one-to-many or many-to-many join. I

Mapping a Complex Object

2009-12-29 Thread Dan Forward
. -- View this message in context: http://old.nabble.com/Mapping-a-Complex-Object-tp26961927p26961927.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-java-unsubscr

Re: Mapping a Complex Object

2009-12-29 Thread Guy Rouillier
On 12/29/2009 6:22 PM, Dan Forward wrote: I am new to iBATIS and I am having difficulty mapping our User object, which consists of several custom objects, some of which span multiple columns in the database. However, all the data for the user is stored in one table. These are the properties of