Is production ready with pgbouncer + postgres? #1216
-
Hi everyone, I am thinking to adopt sqlboiler into my team tech stack, but i still have some questions.
Any help n advice will be very appreciated. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Because You can use the stdlib adapter from pgx (<github.com/jackc/pgx/v5/stdlib>). |
Beta Was this translation helpful? Give feedback.
Because
pgx.Conn
has query and exec methods that don't return*sql.Rows
(they return*pgx.Rows
) then it does not satisfy the interface that the generated SQLBoiler code expects to query with.You can use the stdlib adapter from pgx (<github.com/jackc/pgx/v5/stdlib>).