반응형
<insert id = "insert">
<![CDATA[
INSERT INTO ReContent VALUES(ReContent_seq.nextval, ${member_no}, ${content_title}, ${content_text}, 0, SYSDATE)
]]>
</insert>
$ 가 아니라 #{} 로 가져와야한다.
즉 따옴표가 안 붙었기 때문에~~
반응형
<insert id = "insert">
<![CDATA[
INSERT INTO ReContent VALUES(ReContent_seq.nextval, ${member_no}, ${content_title}, ${content_text}, 0, SYSDATE)
]]>
</insert>
$ 가 아니라 #{} 로 가져와야한다.
즉 따옴표가 안 붙었기 때문에~~