IT
20180919_JasperSoft(1)
roselumi
2018. 9. 19. 15:16
mysql connector 파일
mysql-connector-java-5.1.47.jar
다른 파일은 잘 안됨 ㅠㅠㅠㅠㅠㅠㅠ 해당 파일로 안하면 아래와 같은 에러가 뜸. 그리고 안 됨.
java.sql.SQLException: The server time zone value '´ëÇѹα¹ Ç¥ÁؽÃ' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
관련 자료
https://to-dy.tistory.com/301
mysql 간편설치
https://opentutorials.org/course/3161/19532
테스트용 테이블 생성
CREATE TABLE dept ( dept_no INT(11) unsigned NOT NULL, dept_name VARCHAR(32) NOT NULL, PRIMARY KEY (dept_no) );