Re: Circular dependency?

2005-06-08 Thread Brandon Goodin
to a Category. How should the xml map should be? Thanks in advance. (May I ask a few private mail questions, to not make the list subscribers bored?) --- Ersin Brandon Goodin wrote: Currently a circular dependency would not be possible because of the way configurations are loaded. One

Circular dependency?

2005-06-06 Thread Ersin Er
On page 27 of iBatis SQL Mapper Doc the following mapping xml file is given: resultMap id=”get-category-result” class=”com.ibatis.example.Category” result property=”id” column=”CAT_ID”/ result property=”description” column=”CAT_DESCRIPTION”/ result property=”productList” column=”CAT_ID” select=”

Re: Circular dependency?

2005-06-06 Thread Brandon Goodin
Currently a circular dependency would not be possible because of the way configurations are loaded. One sql map must be loaded before the other can. So, if you attempted a circular reference it would fail during intialization because the referenced mapped statement would not be found