develog

JDBC Basic 본문

Dev/Java

JDBC Basic

냐옴 2012. 4. 17. 10:17

JDBC Basic

1. Establishing a connection

2. Create a statement

3. Execute the query

4. Process the ResultSet object

5. Close the connection


Statement         : no parameter

PreparedStatement : parameter

CallableStatement : input, output parameter


execute       : one or more ResultSet

executeQuery  : one ResultSet

executeUpdate : INSERT, UPDATE, DELETE


DriverManager

DataSource


'Dev > Java' 카테고리의 다른 글

MyBatis 프로시저 호출, result Vo  (0) 2012.04.24
mybatis  (0) 2012.04.18
log4j level 설정  (0) 2012.04.18
myBatis  (0) 2012.04.18
[펌] iBATIS의 트랜잭션, 대량 데이터 일괄처리(배치)  (0) 2012.04.16
Comments