Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a way to "PROGRAM foreign_keys=on" be run on every connect? #197

Closed
wuranbo opened this issue Apr 16, 2015 · 5 comments
Closed

Comments

@wuranbo
Copy link

wuranbo commented Apr 16, 2015

I have to hack the code, or there is already had.

@wuranbo
Copy link
Author

wuranbo commented Apr 16, 2015

I saw ConnectHook。but,sqlite3.go:init() called sql.Register.And sql.Register same name driver twice cause a panic.So there is no way to override it with my own driver with a hook.And looks like, the hook is not useable at all?

There must be something wrong to me? How can I do?

@mattn
Copy link
Owner

mattn commented Apr 16, 2015

I'm thinking how may users expect foreign_keys=off.

@wuranbo
Copy link
Author

wuranbo commented Apr 16, 2015

@mattn I think the answer may be no people..........Looks like sqlite3.h has SQLITE_DBCONFIG_ENABLE_FKEY can force all connection be foreign_keys=on, but I am not sure.

@domingues
Copy link

domingues commented Aug 17, 2016

I'm doing this:

import (
    "database/sql"
    sqlite3 "github.com/mattn/go-sqlite3"
)

// register an hook to run on each database connection
sql.Register("sqlite3_with_fk",
    &sqlite3.SQLiteDriver{
        ConnectHook: func(conn *sqlite3.SQLiteConn) error {
            _, err = conn.Exec("PRAGMA foreign_keys = ON", nil)
            return err
        },
    })
db, err = sql.Open("sqlite3_with_fk", "db.sqlite3")

@mattn
Copy link
Owner

mattn commented Apr 2, 2017

fixes by #407

@mattn mattn closed this as completed Apr 2, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants