Conn returns the underlying *pgx.Conn
()
| 422 | |
| 423 | // Conn returns the underlying *pgx.Conn |
| 424 | func (c *Conn) Conn() *pgx.Conn { |
| 425 | return c.conn |
| 426 | } |
| 427 | |
| 428 | func (c *Conn) Prepare(query string) (driver.Stmt, error) { |
| 429 | return c.PrepareContext(context.Background(), query) |