Fast foreign key addition for sqlite-utils
Project description
sqlite-utils-fast-fks
Fast foreign key addition for sqlite-utils.
Background
SQLite does not yet have a built-in method for adding foreign key constraints to an existing table.
There are two workarounds for this limitation:
- You can create brand new table with the new foreign keys, copy the data across, then drop the old table and rename the new one. This method is implemented by the sqlite-utils table.transform() method.
- You can set
PRAGMA writable_schema = 1
, then directly modify the schema stored in thesqlite_master
table for that table. Then increment theschema_version
, setwritable_schema = 0
again and run a vacuum against the database.
For tables with large numbers of rows that second option is a lot faster, as you don't need to create an entirely new copy of all of the data.
Prior to version 3.35 sqlite-utils implemented the latter pattern as part of its table.add_foreign_key()
and db.add_foreign_keys()
methods.
It turned out these caused table sqlite_master may not be modified
errors on some Python installations, primarily on macOS where the ability to modify the sqlite_master
table is sometimes disabled by default.
This plugin brings the same functionality back again. You can use this if you want fast foreign key addition and you know that your platform does not suffer from the table sqlite_master may not be modified
error.
Installation
Install this plugin in the same environment as sqlite-utils.
sqlite-utils install sqlite-utils-fast-fks
Or install using pip
:
pip install sqlite-utils-fast-fks
Python library
To add foreign keys in Python code, use the add_foreign_keys(db, foreign_keys)
function. Here's an example:
from sqlite_utils_fast_fks import add_foreign_keys
from sqlite_utils import Database
db = Database("my_database.db")
db["country"].insert_all([{"id": 1, "name": "United Kingdom"}])
db["continent"].insert_all([{"id": 1, "name": "Europe"}])
db["places"].insert(
{
"id": 1,
"name": "London",
"country_id": 1,
"continent_id": 1,
}
)
# Now modify that places table to have two foreign keys:
add_foreign_keys(
db,
[
("places", "country_id", "country", "id"),
("places", "continent_id", "continent", "id"),
],
)
The foreign_keys
argument is a list of tuples, each containing four values:
- The table to add the foreign key to
- The column in that table that will be a foreign key
- The other table that the column should reference
- The column in that other table that should be referenced
Command-line tool
When installed as a sqlite-utils plugin, this library adds a new sqlite-utils fast-fks
command. It can be used like this:
sqlite-utils fast-fks my_database.db places country_id country id
The command takes a path to a database, then the table name, the column name, the other table name and the other column name.
You can specify multiple foreign keys to add at once by repeating the last four arguments:
sqlite-utils fast-fks my_database.db \
places country_id country id \
places continent_id continent id
Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd sqlite-utils-fast-fks
python3 -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sqlite-utils-fast-fks-0.1.tar.gz
.
File metadata
- Download URL: sqlite-utils-fast-fks-0.1.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e3827ad1ab37f8d88b651729ba6661c6359eeabd03cdac547cdd4e8e7785e86 |
|
MD5 | 8dc9d145060cf57174ffa46179583bed |
|
BLAKE2b-256 | 2dd44e8fcc621d3373be387da948e57ff420e7a359aabdfbd547efbcdfd8d191 |
File details
Details for the file sqlite_utils_fast_fks-0.1-py3-none-any.whl
.
File metadata
- Download URL: sqlite_utils_fast_fks-0.1-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 130b0582a5d8b9b3a4ac7f8d72d1c4efc4c8b99388e22cfceccf3e1574f7d706 |
|
MD5 | 9ffd55190ebf851aa932afcc61cbef24 |
|
BLAKE2b-256 | 2b01a7ce32a7bc3540e6a9707a26426203ce79906f3e84db496f05e4f3d2430e |