eolas/neuron/a04df86f-a05c-47a7-b4e9-17284e6b14a3/SQLite.md
2024-12-20 11:32:54 +00:00

591 B

tags created
databases
SQL
SQLite
Wednesday, November 13, 2024

SQLite

Enabling foreign key constraints

Foreign key constraints are not enabled by default - it is very permissive. You must manually turn them on, as part of the connection process:

connection = sqlite3.connect("my_database.db")
connection.execute("PRAGMA foreign_keys = ON")

INSERT OR IGNORE INTO

If table has a UNIQUE constraint on a field, insert if it is unique otherwise skip without throwing a constraint error.

INSERT OR IGNORE INTO table_name (value) VALUES (:value)