Expand description
The create_fts_index tool: creates a full-text search virtual table backed
by FTS5 over columns of an existing table.
Structs§
- Create
FtsIndex Input - The input parameters for the
create_fts_indextool. - Create
FtsIndex Output - The result of creating an FTS index.
- Create
FtsIndex Tool - Create a full-text search index on an existing table using SQLite’s FTS5
module. Specify the source table and the columns to index. The virtual table
is named
{table}_ftsby default and can be queried with the MATCH operator.
Enums§
- Create
FtsIndex Error - Errors specific to the
create_fts_indextool.