Tools/이클립스

이클립스 코드 템플릿

아라한사 2014. 5. 31. 19:36
${imp:import(java.sql.Connection, java.sql.PreparedStatement)}

Connection con = null;
PreparedStatement pstmt = null;
String sql = null; 
		
try {
	con = ConnectionProvider.getConnection();	
	sql = "";
	pstmt = con.prepareStatement(sql);
			
} catch (SQLException e) {
	System.out.println("sql에서 에러남." + e);
} finally {
	JdbcUtil.close(con);
	JdbcUtil.close(pstmt);
}