관리 메뉴

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

이클립스 코드 템플릿 본문

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);
}

'Tools > 이클립스' 카테고리의 다른 글

서브라임텍스트 설정  (0) 2014.07.31
이클립스 하이라이트설정  (0) 2014.07.18
이클립스 템플릿 기능  (0) 2014.05.20
이클립스 단축키 주소  (0) 2014.05.13
아판타 스튜디오 플러그인 설치~  (0) 2014.05.13