(ctx context.Context, sql string, arguments ...any)
| 83 | } |
| 84 | |
| 85 | func (c *Conn) Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) { |
| 86 | return c.Conn().Exec(ctx, sql, arguments...) |
| 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...) |