org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [0]; Select statements cannot be executed as an update.; nested exception is java.sql.SQLException: Select statements cannot be executed as an update.
DELETE문을 selet 태그로 묶었기 때문에 에러가 발생
select 태그로 묶게 되면 delete라든가 update같은 것들은 실행 못함.
result-map등을 필요로 하므로..
<select id="deleteClubImage" parameterClass="map">
DELETE
FROM CLUB_IMAGE
WHERE IMAGE_TYPE = #imageType#
AND CATEGORY_ID = #categoryId#
AND SEQUENCE = #sequence#
</select>
DELETE문을 selet 태그로 묶었기 때문에 에러가 발생
select 태그로 묶게 되면 delete라든가 update같은 것들은 실행 못함.
result-map등을 필요로 하므로..