(sql string, args ...interface{})
| 605 | } |
| 606 | |
| 607 | func (tx *Transaction) Exec(sql string, args ...interface{}) error { |
| 608 | return tx.ExecContext(context.Background(), sql, args...) |
| 609 | } |
| 610 | |
| 611 | // Exec executes sql in transaction |
| 612 | func (tx *Transaction) ExecContext(ctx context.Context, sql string, args ...interface{}) error { |
nothing calls this directly
no test coverage detected