(ctx context.Context, sql string, args ...any)
| 91 | } |
| 92 | |
| 93 | func (c *Conn) QueryRow(ctx context.Context, sql string, args ...any) pgx.Row { |
| 94 | return c.Conn().QueryRow(ctx, sql, args...) |
| 95 | } |
| 96 | |
| 97 | func (c *Conn) SendBatch(ctx context.Context, b *pgx.Batch) pgx.BatchResults { |
| 98 | return c.Conn().SendBatch(ctx, b) |