NamedExecContext using this Tx. Any named placeholder parameters are replaced with fields from arg.
(ctx context.Context, query string, arg interface{})
| 356 | // NamedExecContext using this Tx. |
| 357 | // Any named placeholder parameters are replaced with fields from arg. |
| 358 | func (tx *Tx) NamedExecContext(ctx context.Context, query string, arg interface{}) (sql.Result, error) { |
| 359 | return NamedExecContext(ctx, tx, query, arg) |
| 360 | } |
| 361 | |
| 362 | // SelectContext using the prepared statement. |
| 363 | // Any placeholder parameters are replaced with supplied args. |
nothing calls this directly
no test coverage detected