I all, i'm totally new to IBatis so i need some piece of advices !

<resultMap class="potion.core.Processus" id="proc">
<result property="id" column="id"/> <result property="parent" select="getProcessusById" column="idOperationParent"/>
       <result property="idDetails" column="idDetailsEtape"/>
   </resultMap>
<select id="getProcessusById" resultMap="proc" parameterClass="int">
       select * from operation where id=#value#
   </select>


Is this kind of map executable by IBatis ? i'm getting a error.

Reply via email to