sqlite에서 데이터 덤프뜨는 법에 대해 봅시다. 아주 간단합니다. 덤프 뜨는 법 sqlite> .output mydump.sql sqlite> .dump. sqlite> .output stdout 덤프 뜬 파일 다시 넣는 법 .read mydump.sql 설정 정보 확인하기 sqlite> .show echo: off eqp: off explain: auto headers: on mode: column --wrap 60 --wordwrap off --noquote nullvalue: "" output: stdout colseparator: "|" rowseparator: "\n" stats: off width: 0 0 0 0 0 filename: test.db cvs 형식의 파일로 내보내기 sqlite..