일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- functional programming
- JDBC
- 큐
- Pattern
- Collection
- 스택
- Rails
- solid
- Network
- 프로그래머스
- design-pattern
- 람다 칼큘러스
- 디자인패턴
- 로버트마틴
- lambda calculus
- Python
- 파이썬
- exception
- JavaScript
- Spring
- DesignPattern
- Eclipse
- 함수형 프로그래밍
- Java
- tcp
- 자바
- javscript
- Collections
- 겨울카카오인턴
Archives
- Today
- Total
목록drvier (1)
개발자 노트
[jdbc/mysql]jdbc mysql 연결 방법
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..
Web
2020. 3. 19. 12:36