일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 마우스 오른쪽 버튼
- 무료 홈페이지 제작
- 문자열 뒤집기
- 복사방지
- php호스팅
- 홈페이지제작
- 무료 웹 호스팅
- 무료서버
- 무료호스팅
- 자바키워드
- 우편번호 API
- 우체국 우편번호
- 무료홈페이지
- 무료 홈페이지
- 퍼빌리셔
- 자바스크립트
- php
- 웹호스팅
- 호스팅
- 무료제작
- 새우편번호
- 웹퍼블리셔
- 무료
- 마우스오른쪽
- postcodify
- 웹퍼블리싱
- 클릭해제
- 글자뒤집기
- 무료사이트
- 무료 호스팅
Archives
- Today
- Total
Developer Factory
jdbc 데이터베이스 연결 연습 1 본문
package basic.exame06.jdbc.ex;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.Scanner;
public class CourseMgt {
public static void insert() throws Exception {
Class. forName("com.mysql.jdbc.Driver" );
Connection con = DriverManager.getConnection (
"jdbc:mysql://localhost:3306/studydb",
"study",
"study");
PreparedStatement stmt = con .prepareStatement (
"insert SE_SUBJS(TITLE, DEST) values(?, ?)" );
stmt. setString( 1, "홍길동은 바보다" );
stmt. setInt( 2, 3);
stmt. executeUpdate();
System. out.println("입력성공" );
stmt. close();
con. close();
}
public static void list() throws Exception {
Class. forName("com.mysql.jdbc.Driver" );
Connection con = DriverManager.getConnection (
"jdbc:mysql://localhost:3306/studydb",
"study",
"study");
Statement stmt = con .createStatement ();
ResultSet rs = stmt. executeQuery("select SNO, TITLE, DEST from SE_SUBJS");
while(rs.next ()) {
System. out.print(rs .getInt ("SNO" ) + "," );
System. out.print(rs .getString ("TITLE" ) + "," );
System. out.println(rs .getString ("DEST" ));
}
rs. close();
stmt. close();
con. close();
}
public static void update() throws Exception {
Class. forName("com.mysql.jdbc.Driver" );
Connection con = DriverManager.getConnection (
"jdbc:mysql://localhost:3306/studydb",
"study",
"study");
Statement stmt = con .createStatement ();
stmt. executeUpdate(
"update SE_SUBJS set"
+ " TITLE='홍길동'"
+ " where SNO=1");
System. out.println("변경성공" );
stmt. close();
con. close();
}
public static void delete() throws Exception {
Class. forName("com.mysql.jdbc.Driver" );
Connection con = DriverManager.getConnection (
"jdbc:mysql://localhost:3306/studydb",
"study",
"study");
Statement stmt = con .createStatement ();
stmt. executeUpdate(
"delete from SE_SUBJS where SNO=107");
System. out.println("삭제 성공!" );
stmt. close();
con. close();
}
public static void main( String[] args) throws Exception {
//insert();
//list();
//update();
//delete();
}
}