type github.com/jackc/pgx/v4/stdlib.Conn

17 uses

	github.com/jackc/pgx/v4/stdlib (current package)
		sql.go#L155: 	return &Conn{conn: conn, driver: c.driver, connConfig: c.ConnConfig}, nil
		sql.go#L228: 	c := &Conn{conn: conn, driver: dc.driver, connConfig: *connConfig}
		sql.go#L246: type Conn struct {
		sql.go#L254: func (c *Conn) Conn() *pgx.Conn {
		sql.go#L258: func (c *Conn) Prepare(query string) (driver.Stmt, error) {
		sql.go#L262: func (c *Conn) PrepareContext(ctx context.Context, query string) (driver.Stmt, error) {
		sql.go#L278: func (c *Conn) Close() error {
		sql.go#L284: func (c *Conn) Begin() (driver.Tx, error) {
		sql.go#L288: func (c *Conn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) {
		sql.go#L325: func (c *Conn) ExecContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Result, error) {
		sql.go#L342: func (c *Conn) QueryContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Rows, error) {
		sql.go#L367: func (c *Conn) Ping(ctx context.Context) error {
		sql.go#L383: func (c *Conn) CheckNamedValue(*driver.NamedValue) error {
		sql.go#L388: func (c *Conn) ResetSession(ctx context.Context) error {
		sql.go#L397: 	conn *Conn
		sql.go#L429: 	conn         *Conn

	golang.org/x/pkgsite/internal/database
		copy.go#L84: 		stdConn, ok := c.(*stdlib.Conn)