preparedStatementTest.jsp > MODEL

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

MODEL

preparedStatementTest.jsp

페이지 정보

profile_image
작성자 관리자
댓글 0건 조회 453회 작성일 21-07-15 19:38

본문

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

<%@ page import="java.sql.*"%>

<%

Class.forName("com.mysql.jdbc.Driver");

String url="jdbc:mysql://localhost:3306/test?serverTimezone=UTC";

String user="root";

String password="1111";


Connection conn = null; 

PreparedStatement pstmt = null;


String sql="INSERT INTO student (num,name) VALUES (?,'홍길동')";


try {

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

   pstmt=conn.prepareStatement(sql);

  

   for(int i=8;i<=11;i++){

   pstmt.setInt(1,i);

   if(pstmt.executeUpdate()!=0){

   out.println("<h3>"+i+"번 레코드를 등록하였습니다.</h3>");

   }

   }

}catch(Exception e){

out.println("<h3>레코드 등록에 실패하였습니다.</h3>");

e.printStackTrace();

  }

finally{

try{

pstmt.close();

conn.close();

}

catch(Exception e){

e.printStackTrace();

}

}

%>

추천0

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

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

 

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

접속자집계

오늘
124
어제
156
최대
10,760
전체
271,415
Copyright © dancePKT . All rights reserved.