You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two main approaches how to use Postgres in Go. Using the stdlib abstraction *database/sql.DB or *pgx.Conn from github.com/jackc/pgx module.
The challenge is how to support v4, v5 and other future releases of the module. Meanwhile, we don't want to pollute our go.mod with all possible versions.
The text was updated successfully, but these errors were encountered:
There are two main approaches how to use Postgres in Go. Using the stdlib abstraction
*database/sql.DB
or*pgx.Conn
fromgithub.com/jackc/pgx
module.The challenge is how to support
v4
,v5
and other future releases of the module. Meanwhile, we don't want to pollute ourgo.mod
with all possible versions.The text was updated successfully, but these errors were encountered: