* change postgres driver to pgx * modified: go.mod modified: go.sum * chore: tidy go.sum --------- Co-authored-by: Kevin Wan <wanjunfeng@gmail.com>
15 lines
382 B
Go
15 lines
382 B
Go
package postgres
|
|
|
|
import (
|
|
// imports the driver, don't remove this comment, golint requires.
|
|
_ "github.com/jackc/pgx/v5"
|
|
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
|
)
|
|
|
|
const postgresDriverName = "pgx"
|
|
|
|
// New returns a postgres connection.
|
|
func New(datasource string, opts ...sqlx.SqlOption) sqlx.SqlConn {
|
|
return sqlx.NewSqlConn(postgresDriverName, datasource, opts...)
|
|
}
|