나중에 까먹을까봐 기록해두는 sqlite select, insert, update 는 사실 자주 쓰여서 까먹을일이 없는데 컬럼으로 존재여부 확인하고 alter 시키는건 기록 ~! //db 폴더로 경로 설정 $path = "./db"; //db 폴더 존재하지 않으면 생성 if (!is_dir($path)) { mkdir($path, 0777, true); } //db 폴더 내부에 test.db 라는 파일 있는지 체크 $is_file_exist = file_exists('./db/test.db'); //db 폴더 내부에 test.db 라는 파일 없으면 생성 if(!$is_file_exist){ fopen("./db/test.db","w"); } //sqlite DB 연동 $DB = new SQLite3('...