Foreign key isn't being enforced

后端 未结 2 1093
小鲜肉
小鲜肉 2020-12-11 15:33

Why is the following foreign key constraint (although executes fine) not enforced by SQLite? How can I go about enforcing the relationship?

CREATE TABLE User         


        
相关标签:
2条回答
  • 2020-12-11 15:59

    You can also turn on Foreign Key support via embedding in connectionstring:

    foreign keys=True
    

    Example:

    "Data Source={DatabaseFullFilePath};Version=3;foreign keys=True;datetimeformat=CurrentCulture"
    
    0 讨论(0)
  • 2020-12-11 16:03

    As the relevant docs say (in section 2. Enabling Foreign Key Support):

    Assuming the library is compiled with foreign key constraints enabled, it must still be enabled by the application at runtime, using the PRAGMA foreign_keys command. For example:

    sqlite> PRAGMA foreign_keys = ON;

    Foreign key constraints are disabled by default (for backwards compatibility), so must be enabled separately for each database connection separately.

    Have you used that PRAGMA in the relevant connection? (Assuming, as the docs say, that sqlite is compiled appropriately, and also a recent-enough version to offer foreign key constraint enforcement, of course).

    0 讨论(0)
提交回复
热议问题