관리 메뉴

취미개발 블로그와 마음수양

sql 기본 CRUD 본문

DB/MYSQL

sql 기본 CRUD

아라한사 2014. 6. 11. 10:09
기본 자바 커넥션 생성.


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