(ctx context.Context, sql string, args ...any)
| 87 | } |
| 88 | |
| 89 | func (c *Conn) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) { |
| 90 | return c.Conn().Query(ctx, sql, args...) |
| 91 | } |
| 92 | |
| 93 | func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row { |
| 94 | return c.Conn().QueryRow(ctx, sql, args...) |