mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-12 11:34:09 +02:00
Link to SQLITE strict page in a few places
This commit is contained in:
parent
1698a9dcbb
commit
61c6e26cf9
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue