i have following situation. this is my mybatis sql statement:
<select id="select" parameterType="String" resultMap="urlList">
select
x.t002_id
from
t002_metadata x
where
existsNode(x.t002_xml, ?) = 1;
</select>
so when i'm calling the select method from the wrapper class and set the string parameter with a xpath expression, the following error message shows up:
Missing IN or OUT parameter at index:: 1
Is it not possible for mybatis to make a prepared statement with existNode method from oracle??
thanks in advance!