(ctx context.Context, sql string, arguments ...any)
| 67 | } |
| 68 | |
| 69 | func (tx *Tx) Exec(ctx context.Context, sql string, arguments ...any) (pgconn.CommandTag, error) { |
| 70 | return tx.t.Exec(ctx, sql, arguments...) |
| 71 | } |
| 72 | |
| 73 | func (tx *Tx) Query(ctx context.Context, sql string, args ...any) (pgx.Rows, error) { |
| 74 | return tx.t.Query(ctx, sql, args...) |