본문 바로가기
Java

[JSP] 페이지 번호 프로그래밍을 위한 게시판 샘플(테스트) 데이터 생성

by bkuk 2022. 11. 16.

 

String sql = "insert into board1 
(subject, writer, mail, password, content, hit, wip, wdate) values( ?, ?, ?, ?, ?, 0, ?, now())";

pstmt = conn.prepareStatement(sql);

for( int i = 1; i < 101; i++) {

    pstmt.setString(1, "제목" + i);
    pstmt.setString(2, "이름");
    pstmt.setString(3, "test@test.com");
    pstmt.setString(4, "1234");
    pstmt.setString(5, "내용 : " + i );
    pstmt.setString(6, "000.000.000.000");

    pstmt.executeUpdate();

}

댓글