1
0
mirror of https://github.com/jackc/pgx.git synced 2025-05-02 13:40:00 +00:00
pgx/stdlib/stdlibutil110_test.go
fzerorubigd 0b62f832b0
[stdlib] Add support for creating a DB from pgx.Pool
Also the configuration used in the Conn structure (used to implement the
driver.Conn interface) stores a ConnConfig which is used only for determining
if the Connection should be used with Simple Protocol or not.
2019-03-28 16:47:54 +01:00

28 lines
533 B
Go

// +build go1.10
package stdlib_test
import (
"database/sql"
"testing"
"github.com/jackc/pgx"
"github.com/jackc/pgx/stdlib"
)
func openDB(t *testing.T) *sql.DB {
config, err := pgx.ParseConnectionString("postgres://pgx_md5:secret@127.0.0.1:5432/pgx_test")
if err != nil {
t.Fatalf("pgx.ParseConnectionString failed: %v", err)
}
pool, err := pgx.NewConnPool(pgx.ConnPoolConfig{
ConnConfig: config,
})
if err != nil {
t.Fatalf("pgx.ParseConnectionString failed: %v", err)
}
return stdlib.OpenDBFromPool(pool)
}