Link to SQLITE strict page in a few places

This commit is contained in:
Simon Willison 2023-12-07 21:04:33 -08:00
commit 61c6e26cf9
2 changed files with 2 additions and 2 deletions

View file

@ -1972,7 +1972,7 @@ You can specify foreign key relationships between the tables you are creating us
[author_id] INTEGER REFERENCES [authors]([id])
)
You can create a table in STRICT mode using ``--strict``:
You can create a table in `SQLite STRICT mode <https://www.sqlite.org/stricttables.html>`__ using ``--strict``:
.. code-block:: bash

View file

@ -117,7 +117,7 @@ By default, any :ref:`sqlite-utils plugins <plugins>` that implement the :ref:`p
db = Database(memory=True, execute_plugins=False)
You can pass ``strict=True`` to enable ``STRICT`` mode for all tables created from a database object:
You can pass ``strict=True`` to enable `SQLite STRICT mode <https://www.sqlite.org/stricttables.html>`__ for all tables created using this database object:
.. code-block:: python