헤르메스 LIFE

[SQLite] SQLite 설치 및 사용법 본문

Database

[SQLite] SQLite 설치 및 사용법

헤르메스의날개 2012. 5. 17. 11:37
728x90



1. 다운로드 ( 현재 Version : SQLite 3.7.12 )

http://www.sqlite.org/download.html


sqlite-shell-win32-x86-3071200.zip

sqlite-dll-win32-x86-3071200.zip




2. 설치하고자 하는 위치에 폴더 생성 후 압축을 풀면 됩니다.


3. SQLite Expert Personal 다운

http://www.sqliteexpert.com/download.html




4. Command 창에서 sqlite3.exe를 실행하면 됨.


C:\SQLite3>sqlite3 test.db
SQLite version 3.7.12 2012-05-14 01:41:23
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .database
seq  name             file

---  ---------------  ----------------------------------------------------------

0    main             C:\SQLite3\test.db

sqlite> create table test (no integer primary key autoincrement, title text, date text);
sqlite> .table
test
sqlite> insert into test(title, date) values('vidio','2012-05-17-12-36');
sqlite> select * from test;
1|vidio|2012-05-17-12-36
sqlite> .header on
sqlite> .mode column
sqlite> select * from test;
no          title       date
----------  ----------  ----------------
1           vidio       2012-05-17-12-36
sqlite>.exit

C:\SQLite3>dir/w
 C 드라이브의 볼륨에는 이름이 없습니다.
 볼륨 일련 번호: C824-07F1

 C:\SQLite3 디렉터리

[.]                                  [..]
sqlite-dll-win32-x86-3071200.zip     sqlite-shell-win32-x86-3071200.zip
sqlite3                              sqlite3.def
sqlite3.dll                          sqlite3.exe
test.db
               7개 파일           1,658,734 바이트
               2개 디렉터리  28,745,773,056 바이트 남음


- 기타
====================================================
내부명령어와 관련된 도움말은 '''.help'''를 입력하는 정도로 간단히 참조할 수 있다.

  1. .databases : 현재 작업중인 DB파일과 관련된 다른 파일들 목록 출력

  2. .echo ON|OFF : 명령어를 반향 할건지 여부

  3. .exit : 프로그램 종료

  4. .help : 도움말

  5. .schema ?TABLE? : 테이블 구조

  6. .show : 현재 프로그램 설정값을 보여준다.

  7. .read FILENAME : FILENAME으로 부터 SQL을 실행한다.

  8. .output FILENAME : 출력을 FILENAME으로 보냄

  9. .output stdout : 출려을 화면으로 보냄(기본 값)

  10. .output stdout : 출려을 화면으로 보냄(기본 값)


5. SQLite Expert Personal 실행


728x90