Document incorrectly states SQLite does not support foreign key constraints

Issue #2514 resolved
Wichert Akkerman created an issue

The documentation for passive deletes states that ''“ON DELETE” is not supported on SQLite''. As of SQLite 3.6.19 that is no longer true. There is one catch though: you need to explicitly opt-in to foreign key checking by issuing a {{{PRAGMA foreign_keys = ON;}}} statement.

Comments (3)

  1. Mike Bayer repo owner
    • changed milestone to 0.7.9

    fine, should be something like "not supported by SQLite in its default mode of usage". Feel free to post a short patch/pull request if you're so inclined.

  2. Log in to comment