mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Documentation for table.detect_fts() method
This commit is contained in:
parent
5560d717cb
commit
db1e08c2c8
1 changed files with 7 additions and 0 deletions
|
|
@ -1093,6 +1093,13 @@ The ``.triggers`` property lists database triggers. It can be used on both datab
|
|||
>>> db.triggers
|
||||
... similar output to db["authors"].triggers
|
||||
|
||||
The ``detect_fts()`` method returns the associated SQLite FTS table name, if one exists for this table. If the table has not been configured for full-text search it returns ``None``.
|
||||
|
||||
::
|
||||
|
||||
>> db["authors"].detect_fts()
|
||||
"authors_fts"
|
||||
|
||||
.. _python_api_fts:
|
||||
|
||||
Enabling full-text search
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue