
에러난 이유
String url = "jdbc:oracle:thin:@localhost:1521:xe";
String user = "teemo";
String password = "1234";
오라클에 생성한 내이름과 비번이 달라서 생기는 오류이다
해결방법은 내가 생성한 이름과 비번으로 바꿔주는 것이다
String url = "jdbc:oracle:thin:@localhost:1521:xe";
String user = "JSY";
String password = "1234";
'🐢🐢꼬부기 LV.2 | 실습•에러 > 🛡️껍질에 숨기(에러해결)' 카테고리의 다른 글
| 로그아웃 만들기 response is not defined 에러 해결 (0) | 2025.11.19 |
|---|---|
| ORA-00936: missing expression 에러해결 (0) | 2025.11.14 |
| 오라클 ORA-02289: sequence does not exist 에러 해결 (0) | 2025.11.08 |
| SQLException:Resultset.next 호출 에러 해결 (0) | 2025.11.02 |
| 자바에서 DB연결 ClassNotFoundException 해결 (0) | 2025.11.02 |