일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- solid
- javscript
- lambda calculus
- 로버트마틴
- design-pattern
- 프로그래머스
- Rails
- Collection
- 겨울카카오인턴
- Pattern
- 람다 칼큘러스
- Eclipse
- 함수형 프로그래밍
- Collections
- 스택
- DesignPattern
- Java
- Network
- exception
- Spring
- 디자인패턴
- tcp
- 큐
- 백준
- JavaScript
- JDBC
- 자바
- Python
- 파이썬
- functional programming
- Today
- Total
목록JDBC (3)
개발자 노트
jdbc mysql 연결 방법 연결절차 1.java의 sql package 로드 import java.sql.*; 2.Mysql Driver 로드 Class.forName('com.mysql.cj.jdbc.Driver'); Class.forName은 클래스를 로드해주는 역할함. com.mysql.cj.jdbc.Driver란 클래스를 로드해주는 것이다. 이후 이 클래스는 java.sql에 있는 DriverManager가 이용하게 됨 3.mysql과 connection Connection conn = DriverManager.getconnection("dburl,dbUser,dbpasswd"); 해당 연결을 Connection 객체에 담아준다. 4.sql작성하여 준비 PreparedStatem..
1. mysql driver 클래스명 변경으로 인한 에러 에러메세지 Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'설명대로 com.mysql.jdbc.Driver이란 클래스 이름이 com.mysql.cj.jdbc.Driver 이름으로 변경되었다. 드라이브를 불러올 때 Class.forName("com.mysql.cj.jdbc.Driver"); 로 불러오면 해결. 2. mysql KST 서버타임존 미인식으로 인한 에러 에러메세지 The server time zone value '대한민국 표준시' is unrecognized or r..
1. mysql driver 클래스명 변경으로 인한 에러 에러메세지 Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'설명대로 com.mysql.jdbc.Driver이란 클래스 이름이 com.mysql.cj.jdbc.Driver 이름으로 변경되었다. 드라이브를 불러올 때 Class.forName("com.mysql.cj.jdbc.Driver"); 로 불러오면 해결. 2. mysql KST 서버타임존 미인식으로 인한 에러 에러메세지 The server time zone value '대한민국 표준시' is unrecognized or r..