일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 큐
- Pattern
- design-pattern
- javscript
- tcp
- 파이썬
- Collections
- Rails
- lambda calculus
- 백준
- JavaScript
- functional programming
- exception
- Collection
- 프로그래머스
- JDBC
- 스택
- 람다 칼큘러스
- Python
- 디자인패턴
- 로버트마틴
- 함수형 프로그래밍
- 자바
- 겨울카카오인턴
- Eclipse
- Network
- Java
- DesignPattern
- Spring
- solid
Archives
- Today
- Total
목록MySQL (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