실행 명령어
sqlite3.exe [db파일 이름]
오류 메세지 없이 sqlite> 으로 뜨면, DB 파일 내부로 들어온 것이다.
sqlite3.exe chinook.db
해당 명령어로 테스트 DB 파일 내부로 들어왔다.
DB내에 어떤것이 있는지 확인.
.table
종료한다.
.quit
DB파일 생성
sqlite3.exe [파일명.db]
sqlite3.exe [blog.db]
blod.db 파일을 생성했다.
table 생성
sqlite> create table [테이블명]( [title명] [값], ... , [title명] [값] );
sqlite> create table information( ...> user_id text(20) not null, ...> user_pass text(20) not null);
sqlite> create table post( ...> post_number int primary key not null, ...> post_title text(20) not null, ...> post_contents longtext(4294967295) not null );
회원정보를 담을 information 테이블과 게시글 정보를 담을 post 테이블을 생성했다.
information 테이블은 user_id 와 user_pass 를 저장할 것이다.
post 테이블은 게시글의 번호와 제목 그리고 내용을 저장할 것이다.