하루의 쉼터

[Eplise DB Error]java.sql.SQLException: No suitable driver found for jdbc:mysql... to Eplise 본문

프로그래밍/JAVA

[Eplise DB Error]java.sql.SQLException: No suitable driver found for jdbc:mysql... to Eplise

Changun An 2021. 1. 11. 15:53
반응형

| Eplise DB Error 해결

java.sql.SQLException: No suitable driver found for jdbc:mysql://...

위와 같은 문제 발생 시 

1. Connector 관련 코드가 빠진 경우 

  --> 코드를 넣어주면 됩니다.

2. Connector 관련 파일이 빠진 경우

downloads.mysql.com/archives/c-j/

 

MySQL :: Download MySQL Connector/J (Archived Versions)

Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Connector/J, please visit MySQL Downloads. MySQL open source software is provided under the GPL License.

downloads.mysql.com

[그림2-1] 버젼 확인

2-1. 자신이 필요한 버전을 클릭합니다.

[그림2-2] Operating System - Platform Independent

2-2. Operating System에서 Platform Independent를 클립합니다.

 

[그림2-3] Zip파일

2-3. Zip 파일로 다운로드 합니다.

[그림2-4] 압축 파일

2-4. 압축해제 하여 Mysql-connector-java-8.0.22.jar파을을 자신의 자바 경로/jre/lib/ext에 넣습니다.

[그림2-5]

2-5. 이클립스 Project-Properties 클릭

[그림 2-6]

2-6. JavaBuild Path 클릭

[그림 2-7]

2-7. libraries - Add-External JARs 눌러 다운 받은 경로를 추가하고 Apply and Close 클릭

 

해결.

반응형
Comments