7 lines
157 B
Go
7 lines
157 B
Go
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v4"
|
|
)
|
|
|
|
conn, err := pgx.Connect(context.Background(), "postgres://pgx_md5:secret@localhost:5432/pgx_test")
|