[java] 두개의 PreparedStatement 할당후 close 시 문제

by cuins posted Jul 27, 2011

[java] 두개의 PreparedStatement 할당후 close 시 문제

 

Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
PreparedStatement pstmt2 = null;
ResultSet rs2 = null;

.

.

.

try{

pstmt2.close();

pstmt2 = null;

rs2.close();

rs2 = null;

}catch(SQLException e){

   System.out.println(e.getMessage();

}

 

System.out.println(rs.getString(1));

 

 pstm2.close(); 후 pstmt 마져 close() 되버리는 현상이 발생하고 있습니다.

혹시 큐브리드쪽 설정부분을 변경해야 하는 부분이 있으면 알려 주세요.

 

 

 


Articles