Hello,
I am trying to get result from refrence cursor.
Here is my entry...
<resultMap id="treeInfoMap" class="lms.VO.TreeInfoVO" >
<result property="nodeID" column="NODE_ID" />
<result property="nodeType" column="NODE_TYPE" />
</resultMap>
<parameterMap id="paramMap" class="java.util.Map" >
<parameter property="nodeID" jdbcType="NUMERIC"
javaType="java.lang.String" mode="IN"/>
<parameter property="treeInfo" javaType="java.sql.ResultSet"
jdbcType="ORACLECURSOR" mode="OUT" resultMap="treeInfoMap"/>
</parameterMap>
<select id="pro1" parameterMap="paramMap" >
{ call Tree.GETTREEINFO(?,?) }
</select>
And my DTD is...
<!DOCTYPE sqlMap
PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN"
"http://www.ibatis.com/dtd/sql-map-2.dtd">
If any solution on that will appreciate.
I gone threw so many places in google but it seems no one has solutions.
Thanks
--
View this message in context:
http://www.nabble.com/%22resultMap%22-must-be-declared-for-element-type-%22parameter%22.-tp21204262p21204262.html
Sent from the iBATIS - User - Java mailing list archive at Nabble.com.