Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java Collections.sort()
- 알고리즘 그래프
- jquery 필터선택자
- 후위표기
- 재귀함수
- parseInt()
- java lambda
- 조합 재귀
- 알고리즘
- 자바 조합 재귀
- 자바입출력
- jquery dom 계층 선택자
- str to char array
- 자바
- 재귀
- 순열 재귀
- 상속
- 자바 재귀 조합
- Java
- 자바 순열 코드
- java 내부 클래스
- jquery 이벤트 처리
- 순열코드
- 자바스크립트 이벤트중지
- Interface
- 자바스크립트 이벤트처리
- inner class
- jquery 속성선택자
- 서로소
- char to str
Archives
- Today
- Total
유블로그
[Java] JDBC API 기본 사용법 본문
package com.ssafy.jdbc;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
/*
* JDBC 작업 순서
* 1. Driver Loading
* 2. DB 연결 (Connection 생성)
* 3. SQL 실행 준비
* 3-1. SQL 작성.
* 3-2. Statement 생성 (Statement, PreparedStatement)
* 4. SQL 실행
* 4-1. I, U, D
* int x = stmt.execteUpdate(sql);
* int x = pstmt.executeUpdate();
* 4-2. S
* ResultSet rs = pstmt.executeQuery();
* rs.next() [단독, if, while]
* 값얻기 : rs.getString()
* rs.getInt() 등등등....
* 5. DB 연결 종료 : 연결 역순으로 종료, finally
* if(rs != null)
* rs.close()
* if(pstmt != null)
* pstmt.close();
* if(conn != null)
* conn.close();
*/
public class JdbcTest {
private final String driver = "com.mysql.cj.jdbc.Driver";
private final String url = "jdbc:mysql://127.0.0.1:3306/디비이름?serverTimezone=UTC&useUniCode=yes&characterEncoding=UTF-8";
private final String dbid = "...";
private final String dbpwd = "...";
public static void main(String[] args) throws IOException {
Connection conn;
PreparedStatement pstmt;
ResultSet rs;
try {
Class.forName(driver);
conn = DriverManager.getConnection(url, dbid, dbpwd);
pstmt = conn.prepareStatement("select * from student where num = ?");
pstmt.setInt(1, 10);
rs = pstmt.execute();
JdbcDto dto = new JdbcDto ();
if (rs.next()) {
dto.setNum(rs.getInt("num"));
dto.setName(rs.getString("name"));
}
System.out.println(dto);
if(rs != null)
rs.close()
if(pstmt != null)
pstmt.close();
if(conn != null)
conn.close();
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
'DB' 카테고리의 다른 글
데이터베이스 모델링 (0) | 2020.10.21 |
---|