I have the following query in MyBatis:
<select id="getTitles" resultclass="string">
select title from books where XMLEXISTS('$$BOOK/BOOK/INFO[TITLE=#value#] PASSING BOOK AS "BOOK")
</select>
which gives an Invalid column index exception. I have escaped the '$' sign by repeating it twice, and I suspect the error occurs because the parameter map is in between the two single quotes and is not getting substituted correctly because I have tried the query with
<select id="getTitles" resultclass="string">
select title from books where XMLEXISTS('$$BOOK/BOOK/INFO[TITLE="Moby Dick"] PASSING BOOK AS "BOOK")
</select>
and the query works fine. Anyone have any ideas on how to escape this query properly for MyBatis?
