Skip to content

How to switch the database connection at runtime (Multi-tenancy) #1108

Answered by kyleconroy
eborst asked this question in Q&A
Discussion options

You must be logged in to vote

I do have a map of db pools (one for each tenant)

Each database pool should be associated with a single Queries instance. If you already have a map of pools, I'd change the map struct to be a db pool / queries pair like this:

type Tenant struct {
    db *sql.DB
    q *Queries
}

pools := map[string]Tentant{}

Obviously replace string in this example with the type for your tenant ID.

The other advantage of this approach is that you can use Prepare to create prepared queries for each tenant database.

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@nkev
Comment options

@andrewmbenton
Comment options

Answer selected by andrewmbenton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants
Converted from issue

This discussion was converted from issue #1105 on August 09, 2021 16:26.