(ctx context.Context, name, query string)
| 175 | } |
| 176 | |
| 177 | func (p *pgxConn) Prepare(ctx context.Context, name, query string) error { |
| 178 | _, err := p.c.Prepare(ctx, name, query) |
| 179 | return err |
| 180 | } |
| 181 | |
| 182 | // Return a default value for a PostgreSQL column based on its type. Returns nil |
| 183 | // if the type is unknown. |