에러 및 오류

[오류] Invalid bound statement (not found):

유호야 2021. 1. 12. 12:49
반응형

 content > comment 로 수정

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.yu.recipe.comment.mapper.CommentSQLMapper">

	<insert id = "insert">
		
		INSERT INTO ReComment VALUES(
		   ReComment_seq.nextval, #{content_no}, #{member_no}, #{comment_text}, 0, SYSDATE
		)
		
	</insert>
	
	
	
</mapper>

반응형