SQLite | SQLite 명령어 | 각 항목의 현재 설정 내용을 확인 (.show 명령)

.show 명령을 실행하여 대상이나 문장 부호 등 다양한 설정 항목에 현재 설정되어 있는 값을 확인할 수 있다. 여기에서는 .show 명령의 사용법에 대해 설명한다.  

.show 명령 사용

.show 명령을 실행하면 각종 설정 항목에 현재 설정되어 있는 값을 확인할 수 있다. 사용법은 다음과 같다.

.show

그럼 실제로 확인해 보자.

.show
sqlite> .show
        echo: off
         eqp: off
     explain: auto
     headers: off
        mode: list
   nullvalue: ""
      output: stdout
colseparator: "|"
rowseparator: "\n"
       stats: off
       width: 
    filename: mydb.sqlite3
sqlite> 

.show 명령으로 확인할 수 있는 설정 항목의 값은 위와 같다.

그럼 여기에서 mode 항목을 변경하려고 한다. mode의 변경은 .mode 명령을 사용한다. 다음과 같이 실행한다.

.mode html
sqlite> .mode html
sqlite> 

그럼 다시 .show 명령을 사용하여 설정 내용을 확인한다.

.show
sqlite> .mode html
sqlite> 
sqlite> .show
        echo: off
         eqp: off
     explain: auto
     headers: off
        mode: html
   nullvalue: ""
      output: stdout
colseparator: "|"
rowseparator: "\n"
       stats: off
       width: 
    filename: mydb.sqlite3
sqlite> 

mode의 값이 변경된 것을 확인할 수 있다.




최종 수정 : 2019-11-13