dynamic-parameters

iBatis Java: Dynamic table names in DELETE

iBatis 3 has a wonderful ability in SELECT statements to provide dynamic substitution before statement is prepared. For example this will work <select id="foo">SELECT * FROM $db$.MY_TABLE</select> However I can't make it work when trying to empty table XML code: <delete id="del" parameterType="String">DELETE FROM $db$.MY_TABLE</dele...