OLD | NEW |
1 /* | 1 /* |
2 ** This program is a debugging and analysis utility that displays | 2 ** This program is a debugging and analysis utility that displays |
3 ** information about an FTS3 or FTS4 index. | 3 ** information about an FTS3 or FTS4 index. |
4 ** | 4 ** |
5 ** Link this program against the SQLite3 amalgamation with the | 5 ** Link this program against the SQLite3 amalgamation with the |
6 ** SQLITE_ENABLE_FTS4 compile-time option. Then run it as: | 6 ** SQLITE_ENABLE_FTS4 compile-time option. Then run it as: |
7 ** | 7 ** |
8 ** fts3view DATABASE | 8 ** fts3view DATABASE |
9 ** | 9 ** |
10 ** to get a list of all FTS3/4 tables in DATABASE, or do | 10 ** to get a list of all FTS3/4 tables in DATABASE, or do |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 showSegmentStats(db, zTab); | 866 showSegmentStats(db, zTab); |
867 }else if( strcmp(zCmd,"stat")==0 ){ | 867 }else if( strcmp(zCmd,"stat")==0 ){ |
868 showStat(db, zTab); | 868 showStat(db, zTab); |
869 }else if( strcmp(zCmd,"vocabulary")==0 ){ | 869 }else if( strcmp(zCmd,"vocabulary")==0 ){ |
870 showVocabulary(db, zTab); | 870 showVocabulary(db, zTab); |
871 }else{ | 871 }else{ |
872 usage(argv[0]); | 872 usage(argv[0]); |
873 } | 873 } |
874 return 0; | 874 return 0; |
875 } | 875 } |
OLD | NEW |