bbs/update.jsp > JSP

본문 바로가기
사이트 내 전체검색

JSP

bbs/update.jsp

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 361회 작성일 23-03-14 17:49

본문

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>


<%@ include file="/include/header.jsp" %>


<%

request.setCharacterEncoding("utf-8"); //한글 깨짐 방지


String code=request.getParameter("code");

String uid=request.getParameter("uid");


String gongji=request.getParameter("gongji");

String subject=request.getParameter("subject");

String comment=request.getParameter("comment");


///// 홑따옴표 처리 /////

//문자열내에 싱글쿼트(홑따옴표)가 저장되어 있는 문자열을 DB에 저장할때

//Oracle이든, MSSQL이든 MySQL이든 Statement를 이용해서 저장한다면 에러를 유발시키게 됩니다.

//Statement에 넘겨줄 SQL문을 찍어보면 이유를 알 수가 있습니다.

//홑따옴표 자체가 컬럼을 구분하는 예약어(reserved word)다 보니 어디까지가 컬럼인지를 구분을 못해서 발생하는 에러입니다.


subject = subject.replaceAll("'", "''" ); //좌측의 값을 우측의 값으로 치환

comment = comment.replaceAll("'", "''" );


//디비 수정

String sql = "update "+code+" set subject='"+subject+"',comment='"+comment+"',gongji='"+gongji+"' where uid="+uid;


Connection conn=DriverManager.getConnection(url, user, password);

Statement stmt=conn.createStatement();

stmt.executeUpdate(sql);


stmt.close();

conn.close();


response.sendRedirect("list.jsp?code="+code);

%>

추천0

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

공지사항
자유게시판
질문답변
1:1문의

 

별명 : 터푸가위
주소 : 부산시 동래구 명장로20번길 90
대표 : 박규태
메일 : dancepkt@******.com

접속자집계

오늘
117
어제
183
최대
10,760
전체
267,466
Copyright © dancePKT . All rights reserved.