03. 답변형 게시판 ① (테이블 생성, DTO, DAO, 게시글 쓰기, 유효성 검사)
○ SQL - 테이블(tb_bbs) 생성 create table tb_bbs( bbsno number(5) not null -- 일련번호 -99999~99999 ,wname varchar2(20) not null -- 작성자 ,subject varchar2(100) not null -- 글제목 ,content varchar2(2000) not null -- 글내용 ,passwd varchar2(10) not null -- 글비밀번호 ,readcnt number(5) default 0 not null -- 글조회수 ,regdt date default sysdate -- 글작성일 ,grpno number(5) not null -- 글 그룹번호 ,indent number(5) default 0 -- 들여쓰기 ..
2022. 7. 20.