jsp초보라서 게시판을 블로그를 참고 하며 만들고 있습니다.
글쓰기한것이 실제로 insert 되는 write_ok.jsp라는 페이지인데요
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ page import="java.sql.*" %>
<%
request.setCharacterEncoding("euc-kr");
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost:3306/board";
String id="root";
String pass="gogo1423";
String name= request.getParameter("name");
String password=request.getParameter("password");
String title=request.getParameter("title");
String memo=request.getParameter("memo");
try{
Connection conn= DriverManager.getConnection(url,id,pass);
String sql="insert into board(num,USERNAME,PASSWORD,TITLE,MEMO) VALUES(?,?,?,?)";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(1,name);
pstmt.setString(2,password);
pstmt.setString(3,title);
pstmt.setString(4,memo);
pstmt.execute();
pstmt.close();
conn.close();
}catch(SQLException e){
out.println(e.toString());
}
%>
<script language=javascript>
self.window.alert("입력한 글을 저장하였습니다.");
location.href="list.jsp";
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>게시판</title>
</head>
<body>
</body>
</html>
테이블을 보시면num이 pk인데요 제가 참고하는 블로그는 num이 증가가 안되더라고요 ㅜㅜ그래서 글쓰기가 처음은 되지만 2번째부터는 안됩니다 ㅠㅠ num을 처리할 수있는 쿼리는 어떻게 작성해야할까요 ㅠㅠ 아니면 테이블 자체를 바꿔야할지,.