무소의 뿔처럼

(삭제)과정평가형 정보처리산업기사 수강신청 도우미 사이트 본문

과정평가_정산기_기록/수강신청 도우미 사이트

(삭제)과정평가형 정보처리산업기사 수강신청 도우미 사이트

값을변경 2022. 2. 13. 16:50

삭제는 Action 페이지로만 해서 값 삭제 del.jsp

String id = request.getParameter("id");
	
	Connection con = null;
	Statement stmt = null;
	
	try{
		con = dbcon.getConnection();
		stmt = con.createStatement();
		String sql = "delete from course03 where id = "+id;
		stmt.executeUpdate(sql);
		
		response.sendRedirect("index.jsp");
		
		if(stmt!=null) stmt.close();
		if(con!=null) con.close();
	}catch(Exception e){
		e.printStackTrace();
	}

 

 

 

Comments