Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- HTTP
- i18n
- 랜선아미안해
- 이렇게살아야되나자괴감이
- 개미수열
- jsr380
- 지뢰찾기
- etag
- Spring
- kotliln
- Kotlin
- 코드스피츠
- jsr303
- 지수반등
- 스프링
- 클래스레벨밸리데이션
- 워드프레스
- 브로틀리
- 알게뭐냐
- cache-control
- brotli
- 알고리즘
- LastModified
- 리얼월드HTTP
- cross parameter
Archives
- Today
- Total
취미개발 블로그와 마음수양
sql 기본 CRUD 본문
기본 자바 커넥션 생성.
기본 crud
private static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; private static final String DB_URL = "jdbc:mysql://localhost:3306/spring"; private static final String USER = "spring"; private static final String PASSWORD = "hanbit"; private Connection con; public MemberDao_jdbc() { try { // 드라이버 로딩 Class.forName(JDBC_DRIVER); // 커넥션 생성 con = DriverManager.getConnection(DB_URL, USER, PASSWORD); } catch (SQLException e) { System.out.println("커넥션 생성 오류"); } catch (ClassNotFoundException e) { System.out.println("드라이버 로딩 오류"); } }
기본 crud
insert : insert into member value(?,?,?,?) select * from member where id=? update member set name=? , password=? , salary= ? where id=? delete from member where id=?
'DB > MYSQL' 카테고리의 다른 글
mysql Foreign key constraint is incorrectly formed error (0) | 2018.12.09 |
---|---|
mysql 수치 타입 (0) | 2014.06.11 |
sql , ResultSet 길이 검사. 리절트셋 길이 검사 (0) | 2014.06.04 |
sql 원격 접속 허용 (0) | 2014.04.22 |
mysql 사용자 추가 (0) | 2014.04.13 |