Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo from the fts3.html document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c547f4b6c1f42c680590fba5ae403c8e |
User & Date: | drh 2010-11-15 13:15:06.000 |
Context
2010-11-15
| ||
14:32 | Add the Airbus logo to the "famous.html" page. Update the changes for 3.7.4. (check-in: c0a45dd7fa user: drh tags: trunk) | |
13:15 | Fix a typo from the fts3.html document. (check-in: c547f4b6c1 user: drh tags: trunk) | |
2010-11-13
| ||
19:00 | Move the examples on lang_explain.html to new document eqp.html. (check-in: 0c8678b577 user: dan tags: trunk) | |
Changes
Changes to pages/fts3.in.
︙ | ︙ | |||
1152 1153 1154 1155 1156 1157 1158 | <codeblock> <i>-- Create a table using the simple tokenizer. Insert a document into it.</i> CREATE VIRTUAL TABLE simple USING fts3(tokenize=simple); INSERT INTO simple VALUES('Right now they''re very frustrated'); <i>-- The first of the following two queries matches the document stored in</i> <i>-- table "simple". The second does not.</i> | | | | | | 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 | <codeblock> <i>-- Create a table using the simple tokenizer. Insert a document into it.</i> CREATE VIRTUAL TABLE simple USING fts3(tokenize=simple); INSERT INTO simple VALUES('Right now they''re very frustrated'); <i>-- The first of the following two queries matches the document stored in</i> <i>-- table "simple". The second does not.</i> SELECT * FROM simple WHERE simple MATCH 'Frustrated'; SELECT * FROM simple WHERE simple MATCH 'Frustration'; <i>-- Create a table using the porter tokenizer. Insert the same document into it</i> CREATE VIRTUAL TABLE porter USING fts3(tokenize=porter); INSERT INTO porter VALUES('Right now they''re very frustrated'); <i>-- Both of the following queries match the document stored in table "porter".</i> SELECT * FROM porter WHERE porter MATCH 'Frustrated'; SELECT * FROM porter WHERE porter MATCH 'Frustration'; </codeblock> <p> If this extension is compiled with the SQLITE_ENABLE_ICU pre-processor symbol defined, then there exists a built-in tokenizer named "icu" implemented using the ICU library. The first argument passed to the xCreate() method (see fts3_tokenizer.h) of this tokenizer may be |
︙ | ︙ |