Programming/Error8 [mybatis] - parameter 오류 변경 전 mapper 클래스 메서드 public interface MemberMapper { public int loginCheck(String id, String pw); } mapper.xml Select count(*) from member where id = #{id} and pw = #{pw} 해결 방법 @Param annotation + parameterType = "map" 변경 후 public interface MemberMapper { public int loginCheck(@Param("id") String id, @Param("pw") String pw); } Select count(*) from member where id = #{id} and pw = #{pw} 여태까지 쿼리 문의.. 2020. 12. 30. [python] - pandas.read_csv 한글 인코딩 에러 내용: UnicodeDecodeError : 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte 해결: encoding='CP949' 2020. 12. 23. 이전 1 2 다음