mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
db.supports_strict docs, closes #344
This commit is contained in:
parent
1500c19bd0
commit
f29189a3dd
1 changed files with 12 additions and 0 deletions
|
|
@ -2177,6 +2177,18 @@ The ``.has_counts_triggers`` property shows if a table has been configured with
|
|||
>>> db["authors"].has_counts_triggers
|
||||
True
|
||||
|
||||
.. _python_api_introspection_supports_strict
|
||||
|
||||
db.supports_strict
|
||||
------------------
|
||||
|
||||
This property on the database object returns ``True`` if the available SQLite version supports `STRICT mode <https://www.sqlite.org/stricttables.html>`__, which was added in SQLite 3.37.0 (on 2021-11-27).
|
||||
|
||||
::
|
||||
|
||||
>>> db.supports_strict
|
||||
True
|
||||
|
||||
.. _python_api_fts:
|
||||
|
||||
Full-text search
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue